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

15 lines
95 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: MyVar
-> NIL
: (default MyVar 7)
-> 7
: MyVar
-> 7
: (default MyVar 8)
-> 7
: MyVar
-> 7