"Source: Text/System/IO.text";
"Line: 657";
"Date: Thu Sep 25 14:47:43 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/IO.text, line: 657
// Example: H3E3 ()
print "Example: H3E3";
ei := GetEchoInput();
SetEchoInput(true);
Regexp("b.*d", "abcde");
Regexp("b(.*)d", "abcde");
Regexp("b.*d", "xyz");     
date := "Mon Jun 17 10:27:27 EST 1996";
_, _, f := Regexp("([0-9][0-9]):([0-9][0-9]):([0-9][0-9])", date);
f;
h, m, s := Explode(f);
h, m, s;
SetEchoInput(ei);
