メモ

パッケージ: whitespace
詳細: Programming language where only whitespace counts
 Most modern programming languages do not consider white space characters
 (spaces, tabs and newlines) syntax, ignoring them, as if they weren't there.
 Whitespace is a language that seeks to redress the balance. Any non whitespace
 characters are ignored; only spaces, tabs and newlines are considered syntax.
パッケージ: unlambda
詳細: Tiny functional programming language using combinators
 In Unlambda, the only type is a function of one argument. No variables or
 looping constructs provided, though they can be emulated.

 The primitive functions are the basic s, k and i combinators.  This makes for
 write-only code, but it's fun anyway.

 Public health warning: if lambda functions cause your brain to melt, Just Say
 No to Unlambda.
パッケージ: libacme-brainfck-perl
提供: libacme-brainfuck-perl
詳細: Embed Brainf*ck in your perl code
 Brainf*ck (yes, there is a u there.) is about the tiniest Turing-complete
 programming language you can get.  A language is Turing-complete if it can
 model the operations of a Turing machine--an abstract model of a computer
 defined by the British mathematician Alan Turing in 1936.  A Turing machine
 consists only of an endless sequence of memory cells and a pointer to one
 particular memory cell.  Yet it is theoretically capable of performing any
 computation.  This module will allow you to mix Brainf*ck with your perl code.