fork download
  1.  
  2. object Main extends App {
  3. val field = (Some(O), None, None,
  4. None, Some(X), None,
  5. None, None, Some(X))
  6.  
  7. field.productIterator.foreach(println)
  8. }
  9.  
Success #stdin #stdout 0.37s 382080KB
stdin
Standard input is empty
stdout
Some(O)
None
None
None
Some(X)
None
None
None
Some(X)