let s = "a string with \b \n \r \t abcdef"

let s = "🚀 🤭 🔥 😀 with emojis 😅 👌 test 👀"

let s = "a \"string inside\" a string"

let s = "a double escaped \\ test"

let s = "what happens here \\n"

let s = "\0 \xA0"

let s = "unknown escape \m111 as passed through"

let heart = "\u2665"

let smile = "emoji: \u{1F600}"

let taggedTemplate = sql`select * from ${table} where id = ${id}`

let taggedTemplate = Pg.sql`select * from ${table} where id = ${id}`
