vox ~master (2022-05-02T18:23:10Z)
Dub
Repo
input
bench
Undocumented in source.
immutable
auto
input
=
q{
---
fibonacci
// test fibonacci. while loop. func call
void
print
(
i32
){}
i32
fibonacci
(
i32
max
) {
i32
lo
=
0
;
i32
hi
=
1
;
while
(
hi
<
max
) {
hi
=
hi
+
lo
;
lo
=
hi
-
lo
;
print
(
lo
); }
return
lo
; }
}
;
Meta
Source
See Source File
bench
functions
benchSpeed
runBench
variables
input