Print Value Usinf For-in Loop in Swift Programming Language

print list in swift using for in,
  1. import Cocoa      
  2.       
  3. var list:[Int] = [100, 20, 330]      
  4.       
  5. for item in list  
  6. {      
  7.    println( "Value of  list is \(list)")      
  8. }