2017-01-27 | Paul Boddie | file changeset files shortlog | Configure the Makefile using generated secondary Makefiles, replacing the debug-specific Makefile and permitting the selection of included source files. |
paul@279 | 1 | print 1 == 1 # True |
paul@279 | 2 | print 1 != 1 # False |
paul@279 | 3 | print 1 == "one" # False |
paul@279 | 4 | print 1 != "one" # True |