Interactive programming (repl): Difference between revisions

Content added Content deleted
Line 364: Line 364:


;; etc.
;; etc.
</lang>

=={{header|Elena}}==
ELENA Script is a subset of the general language. ELT (Virtual machine terminal) can work in REPL mode
<lang elena>
c:\Alex\ELENA\bin>elt
ELENA command line VM terminal 5.1.13 (C)2011-2020 by Alexei Rakov
ELENA VM 5.1.17 (C)2005-2020 by Alex Rakov
Initializing...
Done...

>f(s1,s2,sep){^ s1 + sep + sep + s2 };

>f("Rosetta","Code",":")
Rosetta::Code
>
</lang>
</lang>