Author Topic: TIP: Use SPC  (Read 1044 times)

OK, I see a lot of people doing
Code: [Select]
"My String" @ " lol part two of my string"
Why use that?  When you use @ you will need to put a space before or after the word.  It's better to just use SPC.  You will not have to do,
Code: [Select]
"My String" @ " lol part two of my string"
You will just need to do
Code: [Select]
"My String" SPC "lol part two of my string"
See? No space.  Using SPC will make you're code look cleaner.

This isn't that big of a problem :|


I use SPC only when it is shorter to do so.
Code: [Select]
"String " @ %var0 //this one
"String" SPC %var0

%var0 SPC %var1 //this one
%var0 @ " " @ %var1