tipi-lang/examples/web/main.tp
2026-01-13 21:29:45 +01:00

3 lines
No EOL
230 B
Text

println("Creating the customers table")
sql("create table if not exists customers(id serial primary key, first_name varchar(50), last_name varchar(50))")
sql("insert into customers (first_name,last_name) values ('first', 'last')")