1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-09 00:06:42 +02:00

change dir

This commit is contained in:
Justin Lin
2019-06-23 10:04:18 +08:00
parent b1687bece2
commit 5d012ece48
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
module test_split_str() {
echo("==== test_split_str ====");
include <unittest.scad>;
include <util/sub_str.scad>;
include <util/split_str.scad>;
assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ","));
}
test_split_str();