1 '' examples/manual/operator/add-assign.bas 2 '' 3 '' NOTICE: This file is part of the FreeBASIC Compiler package and can't 4 '' be included in other distributions without authorization. 5 '' 6 '' See Also: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgOpCombineAdd 7 '' -------- 8 9 Dim n As Double 10 n = 6 11 n += 1 12 Print n 13 Sleep