Interactive programming (repl): Difference between revisions

m (Update lang example (Default auto print mode for LangShell was changed to AUTO))
Line 1,522:
</pre>
 
=={{header|RPL}}==
RPL command-line interpreter is permanently running. Each created function can be called by its name, the same way as built-in instructions, without any prefix.
≪ "::" SWAP + + ≫ ‘FUNC’ STO
"Rosetta" "Code" FUNC
{{out}}
<pre>
1: "Rosetta::Code"
</pre>
=={{header|Ruby}}==
The read-eval-print loop (REPL) for Ruby is ''irb'', the '''''i'''nteractive '''r'''u'''b'''y shell''.
1,150

edits