repo.or.cz
/
io
/
quag.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cleaning up IoMessage_opShuffle.c: tabbing
[io/quag.git]
/
addons
/
ContinuedFraction
/
samples
/
Sample.io
blob
e83e128feb91237d81e9484479152874642bbf49
1
/* Example usages of ContinuedFraction */
2
3
cf
:=
ContinuedFraction
with
(
2
) +
SQRT
with
(
2
) +
SQRT
with
(
3
) +
E
4
5
"2 + sqrt(2) + sqrt(3) + e = ["
print
6
for
(
i
,
0
,
100
, (
cf
at
(
i
) ..
", "
)
print
)
7
"...]"
println