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
/
print_last.ck
blob
b58f8af2ac884f1a0e65f9266eb975a23b83d26c
1
sinosc osc => dac;
2
220.0 => osc.freq;
3
.25 => osc.gain;
4
5
while( true )
6
{
7
// print out last
8
stdout => "at " => now => " last == ";
9
osc.last => stdout;
10
std.rand2(100,1000)::samp => now;
11
}