Implement passing arguments to program via compile-run (#1296)

This commit is contained in:
Alexey Kutepov
2024-08-04 00:47:52 +07:00
committed by GitHub
parent 43ea05aad2
commit a5b5f315d1
11 changed files with 267 additions and 65 deletions

View File

@@ -0,0 +1,6 @@
import std::io;
fn void main(String[] args)
{
io::printn(args);
}