Code vs. Strings: Difference between revisions
Jump to navigation
Jump to search
m (Code strings moved to Code vs. Strings) |
mNo edit summary |
||
Line 1: | Line 1: | ||
Since [[Armed Assault]] you can use ''<nowiki>'...'</nowiki>'', ''"..."'' or ''""...""'' '''only''' for [[String]]s and ''{...}'' '''only''' for [[Code]]. | Since [[Armed Assault]] you can use ''<nowiki>'...'</nowiki>'', ''"..."'' or ''""...""'' '''only''' for [[String]]s and ''{...}'' '''only''' for [[Code]]. | ||
Revision as of 19:00, 22 December 2006
Since Armed Assault you can use '...', "..." or ""..."" only for Strings and {...} only for Code.
In OFP many languague constructs (including forEach, if, while) use the concept of "code strings".
Code is passed as a string to them and they interpret it as code if they wish.
Since version 1.85, string constants can be written in two ways:
Using double quotes (like "Hello") or curled braces (like {a=a+1}).