diff --git a/playground/Demo/Demo22/Main.snow b/playground/Demo/Demo22/Main.snow index 91865ef..37333f1 100644 --- a/playground/Demo/Demo22/Main.snow +++ b/playground/Demo/Demo22/Main.snow @@ -1,5 +1,5 @@ module: Main - import: os,ModuleA + import: os globals: declare sum: int function: main @@ -10,3 +10,8 @@ module: Main end body end function end module + +module: ModuleA + globals: + declare const a: int =10 +end module diff --git a/playground/Demo/Demo22/ModuleA.snow b/playground/Demo/Demo22/ModuleA.snow deleted file mode 100644 index 5561ef6..0000000 --- a/playground/Demo/Demo22/ModuleA.snow +++ /dev/null @@ -1,4 +0,0 @@ -module: ModuleA - globals: - declare const a: int =10 -end module \ No newline at end of file