File size: 226 Bytes
16f1442
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{String Operations}

BEGIN 
str := "String Checking";
PRINT str END;
PRINT LEN(str) END;
x := 2;
y := 13;
z := 3;
PRINT str[x,y,z] END;
PRINT str[14] END;
PRINT str[1,5] END;
PRINT str[,,] END;
{PRINT "bisbciwi"[4] END;}

END