diff --git a/playground/Demo7/Main.snow b/playground/Demo7/Main.snow new file mode 100644 index 0000000..ef4ebf0 --- /dev/null +++ b/playground/Demo7/Main.snow @@ -0,0 +1,12 @@ +module: Main + function: main + parameter: + return_type: boolean + body: + declare b1 :boolean = true + declare b2 :boolean = !b1 + + return b2 + end body + end function +end module \ No newline at end of file