I hereby claim:
- I am mollymorphic on github.
- I am mollymorphic (https://keybase.io/mollymorphic) on keybase.
- I have a public key ASDZGW-PmooBivi7Z_YSCLfdepbV74W9XN2Pp2HfATiucQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/** | |
Bench.java - | |
Allocation/Garbage collection benchmark for Java | |
*/ | |
import java.util.ArrayList; | |
import java.util.Collections; | |
/** | |
* | |
* @author tommy |
function allfibs(end) { | |
var x = 0, y = 1, count = 1; | |
yield 1; | |
while (count++ < end) { | |
[x,y] = [y,x + y]; | |
yield y; | |
} | |
} |