Rust util that highlights an error.
The code below:
rust
fn main() {
let code = "functon is_zero (x) {
if (x == 0) [
return true;
] else {
return false;
}
}";
println!("{}", highlight_error::highlight_error(38, 64, &code));
}
Will output: