fork(1) download
  1. class Teleport {
  2. first()
  3. {
  4. this.name = "Tardis";
  5. print(this.name)
  6. }
  7. message () {
  8. return 'Doctor Whо';
  9. }
  10. }
  11. ob=new Teleport();
  12. ob.first();// your code goes here
Success #stdin #stdout 0.03s 16152KB
stdin
Standard input is empty
stdout
Tardis