1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-23 23:03:23 +02:00
This commit is contained in:
Justin Lin
2020-01-26 17:19:50 +08:00
parent 67a5465e09
commit 60d9cba21a
3 changed files with 29 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
use <unittest.scad>;
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();