diff --git a/playground/Demo/Demo15/Main.snow b/playground/Demo/Demo15/Main.snow index 7ef2b05..269100f 100644 --- a/playground/Demo/Demo15/Main.snow +++ b/playground/Demo/Demo15/Main.snow @@ -1,9 +1,13 @@ module: Main import: os + globals: + declare num1:int=10 function: main + return_type: void body: - print(222) + declare num1:int=11 + print(num1) end body end function end module \ No newline at end of file