diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2009-12-22 01:28:20 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2009-12-22 01:28:20 +0100 |
commit | 2169fd63bdf9caf539ca7ca5b661ee703206500c (patch) | |
tree | e8d531ac9984699054744ad654c972acf5463062 /tests/tenuminh.nim | |
parent | 9dda24e475bbdb3e33ae22d745bfaca552e18465 (diff) | |
download | Nim-2169fd63bdf9caf539ca7ca5b661ee703206500c.tar.gz |
version 0.8.6
Diffstat (limited to 'tests/tenuminh.nim')
-rwxr-xr-x | tests/tenuminh.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tenuminh.nim b/tests/tenuminh.nim deleted file mode 100755 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 |