begin
comment select substring from a string (operation |);
	string (20) s, s2;
	s := "adcdefg123456gh";
	s2 := s(6|3);
	write(s2);
end.
