-- 常用的跳脫字元

-- \" : 雙引號
-- \' : 單引號
-- \n : 換行
-- \r : 回車
-- \\ : 倒斜線
-- \[
-- \]



print('This is Tony\'s book.')   --> 印出 This is Tony's book.
print([[This is Tony's book.]])   --> 印出 This is Tony's book. 

-- \a : Bell
-- \b : Backspace
-- \f : Formfeed
-- \r : Carriage return
-- \t : Tab
-- \v : Vertical tab

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: