summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/tests/string/length.asy
blob: dafb5d56b912c9a93c65bdc41ba0e15633136062 (plain)
1
2
3
4
5
6
import TestLib;
StartTest("length");
assert(length("") == 0);
assert(length("abc") == 3);
assert(length("abcdef") == 6);
EndTest();