Skip to content

Instantly share code, notes, and snippets.

@martsie
Created January 25, 2017 08:43
Show Gist options
  • Save martsie/2c799761f82e06f075785ed7e4a2c795 to your computer and use it in GitHub Desktop.
Save martsie/2c799761f82e06f075785ed7e4a2c795 to your computer and use it in GitHub Desktop.
Simple example of a class in CoffeeScript
class @Person
firstName: 'John'
lastName: 'Doe'
constructor: (@firstName, @lastName) ->
fullName: ->
return "#{@firstName} #{@lastName}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment