move-stackless-bytecode 0.3.2

Move stackless bytecode
Documentation
1
2
3
4
5
6
module 0x42::TestBranching {
    fun branching(cond: bool) : u64 {
      let x = if (cond) { 3 } else { 4 };
      x
    }
}