Hello, I try to port some code from C to Lua. There is some code similar to this (simplified). ... unsigned char var=0; var |= function1(); var |= function2(); return var } How would I implement the |= in Lua? Thanks, Peter