Command line arguments are only available as argument to main.
import"os"
x := os.Args[1]
os.Args[0] is actually the executable name.
x <- return.head =<< System.Environment.getArgs
const x = process.argv[2]
This only works on nodeJS because browsers aren't a command line. process.argv[0] is the filepath you're at. process.argv[1] is `node` (the command used to run the program).