Difference between revisions of "Case Studies"
From SizeCoding
(→External Case Studies) |
|||
Line 7: | Line 7: | ||
:[[10print]]: Trixter's attempt to reproduce 10PRINT for x86 | :[[10print]]: Trixter's attempt to reproduce 10PRINT for x86 | ||
− | :[[4is256]]: rrrola's Tetris | + | :[[4is256]]: rrrola's Tetris is a full tetris clone with scoring |
== External Case Studies == | == External Case Studies == |
Revision as of 13:34, 14 August 2016
Sometimes it can be helpful to examine a tinyprog in detail, seeing what choices were made and why:
- MELT.COM: We take a cute program from the 1980s and see how far we can crunch it down
- m8trix 8b: An "Enter The Matrix" screen display in only 8 bytes
- 10print: Trixter's attempt to reproduce 10PRINT for x86
- 4is256: rrrola's Tetris is a full tetris clone with scoring
External Case Studies
[Brainfuck] is a very tiny language, having only X opcodes. Several attempts at compilers and interpreters have been made; Gynvael archived many different versions along with their source code, the smallest of which was 125 bytes. qkumba took that as inspiration and created his own brainfuck compiler in 100 bytes (104 for one that is fully compliant).