1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 13:59:04 +02:00
Files
dotSCAD/test/util/test_split_str.scad
Justin Lin a7ab17c149 refactor
2022-03-17 21:05:29 +08:00

9 lines
201 B
OpenSCAD

use <util/split_str.scad>;
module test_split_str() {
echo("==== test_split_str ====");
assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ","));
}
test_split_str();