Tuples
let myTuple : (i32, bool) = (42, true);func doSomething() -> (i32, string) {
return (1, "Some Error Occured");
}Last updated
let myTuple : (i32, bool) = (42, true);func doSomething() -> (i32, string) {
return (1, "Some Error Occured");
}Last updated