Files
mgmt/examples/lang/env1.mcl
James Shubin df1e50e599 lang: funcs: Add math pow function and a few examples
Just a few small things I think should be committed.
2018-02-25 19:48:25 -05:00

11 lines
165 B
Plaintext

$env = env()
$m = maplookup($env, "GOPATH", "")
print "print0" {
msg => if hasenv("GOPATH") {
printf("GOPATH is: %s", $m)
} else {
"GOPATH is missing!"
},
}