$ cat test.rs
fn main() {
if("0" == "0") {
log "equal";
} else {
log "not equal";
}
}
$ ./rustboot -L . test.rs -o test.exe && ./test.exe
rt: 0xa0563720:0xbfffece4:0x00100200: upcall log_str("not equal")
We can work around this in the library, but I'd rather not.