Shell one-liner: Difference between revisions

(→‎{{header|Nanoquery}}: Added NetLogo)
(→‎{{header|NetLogo}}: added content)
Line 480:
 
=={{header|NetLogo}}==
Commands can be entered into the NetLogo Command Center. NetLogo is white-space delimited. Variables can be defined with the LET command and used in the statement. The CC can be in various modes, such as Turtle mode, where entered commands are ran as if contained in an ASK TURTLES statement.
<lang NetLogo>let x 15 ask turtles [ set xcor x set x x + 1 ]</lang>
 
=={{header|NetRexx}}==