Runtime evaluation: Difference between revisions

add UNIX Shell
(add UNIX Shell)
Line 1,149:
 
TODO: Is there a way to execute statements as well as evaluate expressions? [[Category:TI-89 BASIC examples needing attention]]
 
=={{header|UNIX Shell}}==
<tt>eval</tt> is the command to use:
<lang bash>$ a=42
$ b=a
$ eval "echo \$$b"
42</lang>
 
=={{header|zkl}}==
Anonymous user