Post History
ESCR, 35 bytes show "show [+ [arg 1] " [arg 1] "]" The SHOW command writes to standard output. The parameters in quotes are just fixed strings. The ARG function returns a numbered argument. In...
Answer
#1: Initial revision
<h2><a href="http://www.embedinc.com/pic/escr">ESCR</a>, 35 bytes</h2> <pre>show "show [+ [arg 1] " [arg 1] "]"</pre> The SHOW command writes to standard output. The parameters in quotes are just fixed strings. The ARG function returns a numbered argument. In the case of programs, these are command line parameters. Running this program with 13 as example parameter yields: <pre>show [+ [arg 1] 13]</pre> Which writes the value of the first command line parameter plus 13 to standard output.