3.8. Listing Variables

[<<<] [>>>]

Using the command ? we could examine the value of a variable. There are two other commands to examine variables. These are: L and G. These commands list the Local and the Global variables. Try it!

#L
main::t=->3
main::a=undef
main::b=5
main::c=undef
#G
main::a=3
#_

[<<<] [>>>]