Fixed bug in executable.
[forth.jl.git] / bin / forth.jl
1 #!/bin/bash
2
3 if [ -z "$1" ]; then 
4     exec julia -e "import forth; forth.run()"
5 else
6     exec julia -e "import forth; forth.run(\"$1\")"
7 fi