Add schala source file test.schala

This commit is contained in:
greg 2018-05-12 13:55:17 -07:00
parent 1a58f3b7af
commit 161e47fe91
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
const a = getline()
if a == "true" {
println("You typed true")
} else {
println("You typed something else")
}