Guest User

Untitled

a guest
Jan 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class Person
  2. constructor: (@name,@age) ->
  3.  
  4. sayYourName: ->
  5. alert @name
  6.  
  7. class Girl extends Person
  8.  
  9. constructor:(@name,@age) ->
  10.  
  11. sayYourNameAndAge: ->
  12. alert @name
  13.  
  14.  
  15.  
  16. p = new Person "faisal",22
  17. p.sayYourName()
Add Comment
Please, Sign In to add comment