From 91f6ed08fe32e36d555129efa4afdd82113f0eb4 Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 9 Nov 2025 19:51:04 +0800 Subject: format tests and templates --- tests/projects/pascal/console_with_c/src/foo.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/projects/pascal') diff --git a/tests/projects/pascal/console_with_c/src/foo.c b/tests/projects/pascal/console_with_c/src/foo.c index 66ca7cfb4..0d56f5f09 100644 --- a/tests/projects/pascal/console_with_c/src/foo.c +++ b/tests/projects/pascal/console_with_c/src/foo.c @@ -1,7 +1,5 @@ #include -extern int64_t fib(int64_t n) -{ +extern int64_t fib(int64_t n) { return n > 1 ? fib(n - 1) + fib(n - 2) : 1; } - -- cgit v1.3.1