diff --git a/playground/Demo/Demo23/Main.snow b/playground/Demo/Demo23/Main.snow new file mode 100644 index 0000000..dbd6d1e --- /dev/null +++ b/playground/Demo/Demo23/Main.snow @@ -0,0 +1,14 @@ +module: Main + import: ModuleA + function: main + returns: void + body: + declare sum: byte = ModuleA.a + end body + end function +end module + +module: ModuleA + globals: + declare const a: byte = 2b +end module