test: integration tests for imports

This commit is contained in:
2025-03-13 09:43:29 +00:00
parent e881b736f8
commit f11fb9f881
23 changed files with 270 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
begin
int main() is
int a = 5 ;
string b = "Hello" ;
return a + b
end
int result = call main() ;
exit result
end