repo.or.cz
/
factor
/
jcg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git]
/
extra
/
literals
/
literals-tests.factor
blob
b88a286a59679a480760e4ae6028675b7b22351d
1
USING: kernel literals tools.test ;
2
IN: literals.tests
3
4
<<
5
: five 5 ;
6
: seven-eleven 7 11 ;
7
: six-six-six 6 6 6 ;
8
>>
9
10
[ { 5 } ] [ { $ five } ] unit-test
11
[ { 7 11 } ] [ { $ seven-eleven } ] unit-test
12
[ { 6 6 6 } ] [ { $ six-six-six } ] unit-test