Unlambda is small functional language consists of only 11 primitive functions (s k i v c d .X e @ ?X |) and Apply operator (`). 	Visit Unlambda Author's site to learn details of language specification.  This interpreter code is available on github. 	Adventure on the "sample" code is the world biggest Unlambda program, written by irori. 	
| ```sXYZ | ``XZ`YZ | 
|---|---|
| ``kXY | X | 
| `iX | X | 
| `vX | v | 
| `cX | `X<cont>(<cont>is current continuation. when`<cont>Yis evaluated, the program continues as if`cXreturnsY.) | 
| ``dXY | `XY(but evaluateYfirst, thenX) | 
| `.XY | Y(and outputX) | 
| `eX | Program exits with code X. | 
| `@X | `Xiiff successfully read a character from STDIN and set it as current character. Otherwise`Xv | 
| `?XY | `Yiiff last application of@sucessfully set current character toX. Otherwise`Yv | 
| `|X | `X.Yiff last application of@successfully set current character toY. Otherwise`Xv |