1\  Test whether d# 0 tokenizes the same as without the d#
2\  It's a named constant, you know, needn't be a literal...
3
4fcode-version2
5
6: lit-test ( -- )
7   d# 0   0  = if ." Zero"  then
8   d# 10 10  = if ." Ten"   then
9   d#  3  3  = if ." Three" then
10   d#  2  2  = if ." Two"   then
11   d#  1  1  = if ." One"  then
12;
13
14fcode-end
15