We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If statements can be used to check for equality between integers and booleans. Though equality between strings may compile, it is not supported.
func main() { let a = 1 + 2 let b = 3 * 1 if (a == b) { std::print_string("equal") } }