Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMark Hockridge
258 Pointsthe program is saying that my (() -> () ->$T5) -> $T6 isnt iddentical to array
im not sure what im doing wrong and the preview keeps coming up with the error listed above. What should i do
let months = [1, 2, 3]
{
if month == 1
{ println("January")}
else if month == 2
{ println("February")}
else if month == 3
{ println("March")}
}
1 Answer
Joakim Halvardsson
1,972 PointsIn the if-statements you're referring to the variable "month", but you have not yet defined it. I can also see a pair of braces {} before and after the if-statement that should not be there. In my code bellow I have assigned a value from the months-array to a variable named month to make your code work.
let months = [1, 2, 3]
var month = months[0]
if month == 1 {
println("January")
} else if month == 2 {
println("February")
} else if month == 3{
println("March")
}