Skip to content

Instantly share code, notes, and snippets.

@telekosmos
Created March 13, 2015 11:36
Show Gist options
  • Save telekosmos/b3152b3186e725ffac55 to your computer and use it in GitHub Desktop.
Save telekosmos/b3152b3186e725ffac55 to your computer and use it in GitHub Desktop.
CS-ES6 export syntax
class Welcome
`console.log("Starting up")`
constructor: () ->
@heading = 'Welcome'
@name = 'John'
@firstname = 'Doe'
fullname: () ->
"#{@name} #{@firstname}
welcome: () ->
console.log "#{@heading} #{fullname()}"
`export default Welcome`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment