1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/test/util/test_fibseq.scad
2022-06-06 13:11:46 +08:00

9 lines
166 B
OpenSCAD

use <util/fibseq.scad>
module test_fibseq() {
echo("==== test fibseq ====");
assert([1, 1, 2, 3, 5, 8, 13, 21, 34, 55] == fibseq(1, 10));
}
test_fibseq();