OILS
/
ysh
/
testdata
/ hello.ysh
View on Github
|
oilshell.org
6 lines, 3 significant
1
# hello.oil
2
3
const x = 40
4
const y = 2
5
6
echo
"
hello $[x + y]
"
# hello 42