diff --git a/playground/Demo/Demo20/Main.snow b/playground/Demo/Demo20/Main.snow new file mode 100644 index 0000000..94dd6ea --- /dev/null +++ b/playground/Demo/Demo20/Main.snow @@ -0,0 +1,11 @@ +module: Main + import: os + function: main + return_type: double + body: + declare n: double[] = [10.0] + + return n[0] + 1.0 + end body + end function +end module