repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
v2
/
test
/
60.ck
blob
c4427e9f74ac5e77e431304a559a4f0b2f0855f3
1
// instantiate a Perry
2
PRC tokens;
3
4
// set the tokens
5
tokens.set( "a b c 3.343 2.3" );
6
7
// loop over tokens
8
while( tokens.more() )
9
{
10
// print
11
<<< tokens.next() >>>;
12
}