#option_explicit #constant XOR = ~~ do print("'"+StringXOR(chr(255-65)+"XYZHallo")+"'") print(0 XOR 255) print(255 XOR 255) if GetPointerPressed() then exit sync() loop end function StringXOR(Text as string) local NewText as String local i as integer local c as string for i=1 to len(Text) c=mid(Text,i,1) NewText=NewText + chr(asc(c) XOR 255) next endfunction NewText