Runtime evaluation: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: changed/added comments and whitespace, changed indentations.)
mNo edit summary
Line 1,412: Line 1,412:
$ eval "echo \$$b"
$ eval "echo \$$b"
42</lang>
42</lang>

=={{header|Ursa}}==
The eval statement in Ursa takes a string and evaluates it as a command, redirecting the console to the specified I/O device.
<lang ursa># writes hello world to the console
eval "out \"hello world\" endl console" console
</lang>


=={{header|zkl}}==
=={{header|zkl}}==