comparison modules/option.tp @ 275:d83647152485

Added option module which was omitted in commit of SDL work
author Michael Pavone <pavone@retrodev.com>
date Sun, 20 Jul 2014 12:34:25 -0700
parents
children 38ca63e0a62e
comparison
equal deleted inserted replaced
274:a923b5b7da3d 275:d83647152485
1 {
2 _none <- #{
3 value:none <- :ifval :ifnone {
4 ifnone:
5 }
6 }
7 #{
8 value <- :v {
9 #{
10 value:none <- :ifval :ifnone {
11 ifval: v
12 }
13 }
14 }
15 none <- { _none }
16 }
17 }