polserver/testsuite/escript/substr/substr04.src
2015-12-19 02:31:08 +01:00

8 lines
191 B
Text

program textcmd_test( who )
var props := "0x1001";
Print("Props --> "+Props);
var tmp;
tmp := props[3,1];
Print("Props --> "+Props);
Print("Tmp --> "+tmp);
Endprogram