Merge pull request #380 from bjh21/bjh21-bbc-basic
[jackhill/mal.git] / chuck / util / Constants.ck
1 public class Constants
2 {
3 static MalTrue @ TRUE;
4 static MalFalse @ FALSE;
5 static MalNil @ NIL;
6 }
7
8 MalTrue.create() @=> Constants.TRUE;
9 MalFalse.create() @=> Constants.FALSE;
10 MalNil.create() @=> Constants.NIL;