From 161e47fe918b55284178455de03a5bf760c5edd5 Mon Sep 17 00:00:00 2001 From: greg Date: Sat, 12 May 2018 13:55:17 -0700 Subject: [PATCH] Add schala source file test.schala --- source_files/schala/test.schala | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 source_files/schala/test.schala diff --git a/source_files/schala/test.schala b/source_files/schala/test.schala new file mode 100644 index 0000000..76c90ba --- /dev/null +++ b/source_files/schala/test.schala @@ -0,0 +1,8 @@ + +const a = getline() + +if a == "true" { + println("You typed true") +} else { + println("You typed something else") +}