fork download
  1. class hello {
  2.  
  3. construct( name:String) {
  4. print(name)
  5. }
  6. }
  7.  
  8. new hello("Vraj")
Success #stdin #stdout 3.39s 169392KB
stdin
Standard input is empty
stdout
Vraj