Conditionals

if condition {
╰╴No statement matched
// code } else if condition2 { // more code } else { // even more code } val result = if condition { value1 } else { value2 }
thp

Check for datatypes

TBD


if variable is Datatype {
╰╴No statement matched
// code using variable }
thp

If variable is of enum

TBD


val user_id = POST::get("user_id")
╰╴No statement matched
if Some(user_id) = user_id { print("user_id exists: {user_id}") } if Some(user_id) = user_id && user_id > 0 { print("user_id is greater than 0: {user_id}") }
thp