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]
/
examples
/
maybecli.ck
blob
7ad59b2855d2f2e5b60f972f06a44aac2f0e300b
1
// maybe click, maybe not
2
3
impulse i => dac;
4
5
// infinite time-loop
6
while( true )
7
{
8
if( maybe ) 1.0 => i.next;
9
50::ms => now;
10
}