blassic tests
- send 3 strings to a blassic program and have the result come back here
Note b_test.cgi uses b_test to call pg-b_test.sh
pg-b_test.sh contains
#!/bin/sh
blassic /var/blassic/b_test.bas $string1 $string2 $string3
b_test.bas contains
1 rem I am expecting 3 strings
10 print "<BR>You sent these strings :-<BR>"
20 print "string1 ___ ",programarg$(1),"<BR>"
30 print "string2 ___ ",programarg$(2),"<BR>"
40 print "string3 ___ ",programarg$(3),"<BR><BR>"