Is this better to check a variable before you assign it to a value that could be the same?
for example:
local $EmptyLog = false
func WriteLog($text)
_guictrledit_appendtext($log, ($EmptyLog ? @CRLF : $empty) & $text)
If $EmptyLog Then $EmptyLog = False
endfunc
or does AutoIt behind the scenes already check this?
i guess overwriting memory with the same value over and over again is not good if you can prevent this with a check?