diff options
author | Andreas Rumpf <andreas@andreas-laptop> | 2010-05-29 00:43:57 +0200 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-laptop> | 2010-05-29 00:43:57 +0200 |
commit | 6bdc59626c1ebcd9857980d0c129dc8ddd8fa11c (patch) | |
tree | 398ad55931ad1bcf8a3b3a9c77b1ed04354465b3 | |
parent | 1fa668d27b6cf47219c86431423ebacfb643034f (diff) | |
download | Nim-6bdc59626c1ebcd9857980d0c129dc8ddd8fa11c.tar.gz |
deleted tests/tenuminh.nim
-rw-r--r-- | tests/tenuminh.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tenuminh.nim b/tests/tenuminh.nim deleted file mode 100644 index 02c71613b..000000000 --- a/tests/tenuminh.nim +++ /dev/null @@ -1,10 +0,0 @@ -type - TCardPts = enum - North, West, South, East - - TCardPts2 = enum of TCardPts - N, W, S, E - -# If I do: -var y = W -echo($y & "=" & $ord(y)) #OUT W=5 |