Implement system()
All checks were successful
Build / AerScript (push) Successful in 31s

This commit is contained in:
2025-08-28 15:14:59 +02:00
parent d4b6fd782e
commit be203e2e60
3 changed files with 38 additions and 0 deletions

6
tests/execute_system.aer Normal file
View File

@@ -0,0 +1,6 @@
class Program {
public void main() {
bool $res = system("echo OK");
print("Result: ", $res);
}
}