WebBasic Online Interpreter
Enter your program here
* File input/output commands are disabled for this demo
REM Leave the next line intact. ContentTypeHTML ' You need this REM Start your program on next line. REM here is an example program print "" print "
My Very Own WebBasic Program
" print "" dbopen ' open memory database create table mytable (myint int) for j = 1 to 10 insert into mytable values (:j) next dbfor rec in select * from mytable order by myint desc ? "
" + rec.myint dbnext print "" dbclose
© 1998 Data Design Group, Inc.