diff options
author | Araq <rumpf_a@web.de> | 2012-05-09 23:59:12 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-05-09 23:59:12 +0200 |
commit | ccc4ed2c5a928b5e1adc91e7e5c4a6b16032b8ec (patch) | |
tree | 718363116b380cfdfc5503b7a94119aa7132232b /tests/run | |
parent | 2f17c264f43b93056a0d0d91de61cb85c58bff0b (diff) | |
download | Nim-ccc4ed2c5a928b5e1adc91e7e5c4a6b16032b8ec.tar.gz |
added thexlit test
Diffstat (limited to 'tests/run')
-rw-r--r-- | tests/run/thexlit.nim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run/thexlit.nim b/tests/run/thexlit.nim new file mode 100644 index 000000000..04a530c9c --- /dev/null +++ b/tests/run/thexlit.nim @@ -0,0 +1,12 @@ +discard """ + file: "thexlit.nim" + output: "equal" +""" + +var t=0x950412DE + +if t==0x950412DE: + echo "equal" +else: + echo "not equal" + |