module test_sub_str() { echo("==== test_sub_str ===="); include ; include ; assertEqual("hello", sub_str("helloworld", 0, 5)); assertEqual("world", sub_str("helloworld", 5)); } test_sub_str();