From e09c405e39c1518d91c8643d617e42c1d980a111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferhat=20Ge=C3=A7do=C4=9Fan?= <54369961+ferhatgec@users.noreply.github.com> Date: Mon, 19 Oct 2020 22:28:47 +0300 Subject: [PATCH] Fix FlaScript (#851) --- f/flascript.fls | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/f/flascript.fls b/f/flascript.fls index a00dade5..c853368c 100644 --- a/f/flascript.fls +++ b/f/flascript.fls @@ -1,4 +1,4 @@ main() -> main { -print(string) -> "Hello World" -print(newline) -} + print(string) -> "Hello World" + print(newline) +} main;