aboutsummaryrefslogtreecommitdiff
path: root/challenge-031/stuart-little/lua/ch-2.lua
blob: fa840c94efbf18ca689a096b24e9e0c397ad28d5 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env lua

-- run <script> <variable name>

_G[arg[1]]=math.random()
print("Your variable:")
print(arg[1]..": ".._G[arg[1]])