Aer/tests/execute_system.aer
Rafal Kupiec be203e2e60
All checks were successful
Build / AerScript (push) Successful in 31s
Implement system()
2025-08-28 15:14:59 +02:00

7 lines
103 B
Plaintext

class Program {
public void main() {
bool $res = system("echo OK");
print("Result: ", $res);
}
}