~starkingdoms/starkingdoms

ref: 4174a429888ef87273b8513556a6a259b52798b9 starkingdoms/crates/kabel/test/syntax/if_else.kab -rw-r--r-- 78 bytes
4174a429 — ghostly_zsh camera and other transform added, also bevy 8 months ago
                                                                                
1
2
3
4
5
6
7
if(i == 0) {
    i = 1;
} else if (i == 1) {
    i = 2;
} else {
    i = 3;
}