Closed vvv closed 5 years ago
bind some arguments to run for re-use. Example:
‘run’ in the sentence above is perceived as a normal word, confusing the reader. It is only after looking at
bind some arguments to run_ for re-use, and require 1 argument. Example:
run_
it became clear that run is an identifier.
run
git = command1 "git" []; git "pull" ["origin", "master"]
is harder to parse than
git = command1 "git" [] git "pull" ["origin", "master"]
The latter formatting is also symmetrical to
monit = command "monit" ["-c", "monitrc"] monit ["stop", "program"]
Thanks!
Change 1
‘run’ in the sentence above is perceived as a normal word, confusing the reader. It is only after looking at
it became clear that
run
is an identifier.Change 2
is harder to parse than
The latter formatting is also symmetrical to