Files
harbour-core/harbour/tests/working/strsub.prg
1999-07-21 07:05:57 +00:00

23 lines
283 B
Plaintext

// Testing strings concat
function main()
LOCAL a := "STRINGS "
LOCAL b := "CONCAT"
LOCAL c
LOCAL i
for i := 1 to 3
a += " "
c := a
c -= b
QOut( "[" + c + "]" )
next
QOut()
__Accept( "Press a key to raise an error!" )
QOut( a - i )
return nil