fork download
  1. def a = Some([1]);
  2.  
  3. match (a)
  4. {
  5. | Some([x]) => System.Console.WriteLine(x);
  6. | _ => ()
  7. }
Success #stdin #stdout 0.08s 19344KB
stdin
Standard input is empty
stdout
1