[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Writing "raw" strings in Lua
- From: lhf (Luiz Henrique de Figueiredo)
- Date: Thu, 1 Jan 1998 16:36:07 -0200
>What's the easiest way to write a "raw" string out. That is, if we do:
the easiest, but not the prettiest, way is the [[ ... ]] form:
write("[[",s,"]]")
--lhf