RosettaCodeData/Task/Undefined-values/PicoLisp/undefined-values-2.l

15 lines
95 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
: MyVar
-> NIL
: (default MyVar 7)
-> 7
: MyVar
-> 7
: (default MyVar 8)
-> 7
: MyVar
-> 7