Skip to content

Instantly share code, notes, and snippets.

View EthanJWright's full-sized avatar

Ethan James Wright EthanJWright

View GitHub Profile
### Keybase proof
I hereby claim:
* I am ethanjwright on github.
* I am gabenmessiah (https://keybase.io/gabenmessiah) on keybase.
* I have a public key ASBnJRn-zlRk4QDZ5A9Z2p1tIAMwJCoB8fW7ZlnB2cVz9go
To claim this, I am signing this object:
@EthanJWright
EthanJWright / test.jsy
Created October 22, 2016 20:48
test this jsy
const x = function w(z) {
return ((z > 0) ? 0 : 1);
};
const g = (y) => { return x(y) && y; }
const f = function factorial(n) {
const c = (n === 0) ? 1 : (n * factorial(n - 1));
return c && g(c);
};