Use of := notation in Directory code.
[cslatevm.git] / tests / match.slate
blob0b646c4b26c66c29db8c023a39b8c9a4a74928d9
2 assert: (Nil matches: Nil).
4 assert: (Nil matches: 4).
6 assert: (lobby matches: Nil).
8 assert: ({} matches: {}).
10 assert: ({1. 2. 3} matches: {1. 2. 3}).
12 assert: ({Nil. 2} matches: {2. Nil}).
14 assert: ({1. 2. {3. 4}} matches: {Nil. 2. {3. Nil}}).