This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
The Pekoe programming language
The Pekoe programming language (still in the early development/planning process). Nothing is really usable yet, though quite a few things are working.
Examples
accumulator (closure):
var make_accumulator = function(n) {
return function(i) { n = n + i; };
}
var accum1 = make_accumulator(111); // accumulator 1
var accum2 = make_accumulator(222); // accumulator 2
assert accum1(12) == 123;
assert accum2(8) == 230;
assert accum1(17) == 140;
assert accum2(-30) == 200;






