Skip to content

Instantly share code, notes, and snippets.

@sevvie
Last active December 17, 2015 00:29
Show Gist options
  • Save sevvie/5521365 to your computer and use it in GitHub Desktop.
Save sevvie/5521365 to your computer and use it in GitHub Desktop.
These five lines of code make me way too happy.
#!env lsc
global <<< require \prelude-ls
cmd-line-args = drop 2, process.argv
console.log cmd-line-args
sevvie@Prudence - ~/Workspaces/Sandbox % ./exec.ls
[]
sevvie@Prudence - ~/Workspaces/Sandbox % ./exec.ls chocolate bar
[ 'chocolate', 'bar' ]
sevvie@Prudence - ~/Workspaces/Sandbox % lsc -c exec.ls
sevvie@Prudence - ~/Workspaces/Sandbox % node exec.js chocolate bar
[ 'chocolate', 'bar' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment