fork download
  1. select("The Sqlite Multiply 2 Numbers Program.");
  2. create table tbl(str varchar(20));
  3. insert into tbl values('Hello world!');
  4. select * from tbl;
  5. select("X "),(25),(" X "),(25),(" Z "),(25 * 25);
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
The Sqlite Multiply 2 Numbers Program.
Hello world!
X |25| X |25| Z |625