1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-29 11:58:39 +01:00
dotSCAD/test/util/test_split_str.scad

9 lines
200 B
OpenSCAD
Raw Normal View History

2022-06-06 13:11:46 +08:00
use <util/split_str.scad>
2020-01-26 16:26:19 +08:00
module test_split_str() {
echo("==== test_split_str ====");
2017-06-22 15:10:25 +08:00
2019-06-16 17:30:17 +08:00
assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ","));
}
test_split_str();