How does multiple assignment work is Kotlin? ``` ...
# getting-started
s
How does multiple assignment work is Kotlin?
Copy code
int mBaseSystemUiVisibility = SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
            | SYSTEM_UI_FLAG_LAYOUT_STABLE;
t
Copy code
val mBaseSystemUiVisibility = SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN or SYSTEM_UI_FLAG_LAYOUT_STABLE
s
Thanks. I should have seen the bitwise operator.
c
That's not a multiple assignment by the way, just a simple bit expression
👍🏽 1