Writing "raw" strings in Lua
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Writing "raw" strings in Lua
- From: Steve Dekorte <steve@...>
- Date: Wed, 31 Dec 97 14:01:04 -0800
What's the easiest way to write a "raw" string out. That is, if we do:
aString = "Hello,\nHow are you?\n"
writerawstring(aString)
then the output would be:
Hello,\nHow are you?\n
instead of:
Hello,
How are you?