Created
November 17, 2014 08:46
-
-
Save anonymous/3fdd0f358df20f0ce15f to your computer and use it in GitHub Desktop.
Private members in CoffeeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
privateBar = "bar" | |
getPrivateBar = () -> | |
privateBar | |
publicBar: () -> | |
privateBar() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment