Hey, I usually used to program in Python. Then I tried Lua. Is there a way for me to use comments in scripts to tell something? Like I don't want the comment to have an effect on the script. I just want it there to remind me about stuff.
1 | -- This is a comment! |
2 |
3 | --[[ |
4 | Lol life |
5 | lol life |
6 | multi line commmmmments |
7 | ]] |
Here ya go
You could google this but here are some examples:
1 | --[[ |
2 |
3 | Boxed, multi line comments |
4 |
5 | ]] -- |
6 |
7 | -- Singular line comments |
8 |
9 | print ( "Yay" ) |