Skip to content

Instantly share code, notes, and snippets.

@ssadler
Created January 25, 2016 22:43
Show Gist options
  • Select an option

  • Save ssadler/5478d928a3887ebb5133 to your computer and use it in GitHub Desktop.

Select an option

Save ssadler/5478d928a3887ebb5133 to your computer and use it in GitHub Desktop.
purescript export class
"use strict";
// I would like to export a class from Purescript like below.
class MyObjectFromPurescript {
constructor(n) {
this.n = n
}
getN() {
return this.n;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment