| 123456789101112131415161718192021222324252627 |
- //multiline strings can use [=*[ content ]=*] or {=*{ content }=*} or (=*( content )=*)
- local str = [==[
- local str2 = {=={
- Hello !
- I'm a multiline string !
- }==};
- ]==];
- print(str);
- str = {=={
- local str2 = [==[
- Hello !
- I'm a multiline string !
- ]==];
- }==};
- print(str);
- str = (==(
- local str2 = [==[
- Hello !
- I'm a multiline string !
- ]==];
- )==);
- print(str);
|