Add support for global functions

This commit is contained in:
nub31
2025-05-05 16:27:11 +02:00
parent 1f42a3f82d
commit f77fdb86f3
7 changed files with 44 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import "core";
func main() {
global func main() {
let x = "test";
puts(x);
}