Introduction
Statistics
Contact
Development
Disclaimer
Help
ftp.icm.edu.pl home page
import TestLib;
StartTest("substr");
string s = "abcdef";
string sub = substr(s,2,2);
assert(sub == "cd");
EndTest();