From 65e49c64cc72b3a37903af670dcf1b53655cf4f9 Mon Sep 17 00:00:00 2001 From: "M.S" Date: Mon, 29 Jul 2024 17:49:43 +0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cfa47aa..f8e04c4 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ _Please note that the syntax may change in the future._ Here is an example of a "Hello, world!" program in Hadron: -```c +``` fx main { IO:out("Hello, world!") } @@ -67,7 +67,7 @@ fx main { And here is an example of a function that calculates the nth Fibonacci number: -```c +``` fx fib(i32 n) { if n < 2 { return n; } else { return fib(n-1) + fib(n-2); }