In this code I\'ve written a really useless enum that defines a possible Number with Int or Float.
Number
I can\'t understand how can I access the value that
I have used something like this:
switch number { case .int(let n): println("integer is \(n)") case .float(let n): println("float is \(n)") }