JoshCheek / seeing_is_believing

Displays the results of every line of code in your file
1.3k stars 54 forks source link

xmpfilter style after heredoc doesn't display the line #77

Closed JoshCheek closed 7 years ago

JoshCheek commented 7 years ago

The very last comment here:

require 'sqlite3'  # => true

db = SQLite3::Database.new ':memory:'

db.execute <<-SQL
CREATE TABLE "users"
( "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
  "name" varchar
);
SQL

db.execute <<-SQL
INSERT INTO "users" ("id", "name") VALUES (10, "Josh");
SQL

db.execute <<-SQL
select * from "users";
SQL
# =>