Files
c3c/resources/testproject/scripts/scriptme.c3
Christoffer Lerno 3221180315 Fixes to `"exec" use.
2025-01-22 00:26:40 +01:00

7 lines
118 B
Plaintext

import std;
fn int main(String[] args)
{
if (args.len == 1) return 1;
io::printn("Hello from script!");
return 0;
}