-
let a : Int = 1
let b : Int = 2
# let a, b = 1, 2 # error declaration must have either a type or an initializer
# let a : Int, b : Int = 1, 2 error unknown tokens at the end of a declaration
print("a = ", a, " b = ", b) |
Beta Was this translation helpful? Give feedback.
Answered by
lattner
May 28, 2023
Replies: 1 comment
-
+1, this isn't supported yet, but we definitely need to! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
survuvi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
+1, this isn't supported yet, but we definitely need to!