Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 28, 2015 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/7c99a771927494e6c77b to your computer and use it in GitHub Desktop.
Save chuck0523/7c99a771927494e6c77b to your computer and use it in GitHub Desktop.
# class
log = (x) -> console.log x
# 大文字から始まる
class User
constructor : (name) ->
this.name = name
# thisは@で置き換えてもOK
me = new User "chuck"
log me.name
class User
constructor : (@name) ->
hello : -> log "hello, #{@name}"
you = new User "you"
you.hello()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment