Files
mgmt/examples/lang/args.mcl

8 lines
139 B
Plaintext

import "fmt"
import "os"
# show the argv of this process
print "print" {
msg => fmt.printf("args(%d): %v", len(os.args()), os.args()),
}