summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/tests/string/insert.asy
blob: 2c11a2ef00f2a4a03a958f51b26bdba981e4aee0 (plain)
1
2
3
4
5
import TestLib;
StartTest("insert");
string sub = insert("abef",2,"cd");
assert(sub == "abcdef");
EndTest();