|
|
|
|
|
by tialaramex
937 days ago
|
|
Some languages (Rust and Swift for example) have expressions which are placeholders but won't actually work. let x = 5 + todo!("Complicated arithmetic expression");
... is valid Rust, it typechecks, your syntax highlighter should be fine with it, it'll compile, but if that line ever executes, you panic immediately. |
|