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

7 lines
182 B
Text

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