june / Patching A Compiled Program
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 year ago
Adding features to a program compiled from another language.
| 1 | |----------------------------------------| |
| 2 | |
| 3 | The section between these |
| 4 | two lines is a patch to |
| 5 | the original program. |
| 6 | |
| 7 | It's intended that, as a |
| 8 | program is used, it can be |
| 9 | changed and patched as the |
| 10 | user desires. |
june / A small game.
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 year ago
A livecoded text adventure game with a win and loss condition.
| 1 | Start the game: |
| 2 | The Road is to the east of The House, |
| 3 | The Forest is to the east of The Road, |
| 4 | The Shed is to the south of The House, |
| 5 | The Field is to the south of The House, |
| 6 | The Shed is locked, |
| 7 | You spawn. |
| 8 | |
| 9 | You are next to $a $place: You are at $a $place. |
june / Drawing a triangle.
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 year ago
A demonstration of a line drawing port.
| 1 | |#|start exhaustive |
| 2 | |#|constant, @resolution-x, 800 |
| 3 | |#|constant, @resolution-y, 600 |
| 4 | ||start |
| 5 | |start| |
| 6 | @resolution-x:800, |
| 7 | @resolution-y:600, |
| 8 | set the window resolution, |
| 9 | main loop |
| 10 | |set the window resolution| @set-resolution |
june / A pen plotter demonstration.
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 year ago
A sample pen plotter program that draws 'Hi'.
| 1 | |#| start exhaustive |
| 2 | |u | up |
| 3 | |d | down |
| 4 | |l | left |
| 5 | |r | right |
| 6 | |f | forward |
| 7 | |tl | turn left |
| 8 | |tr | turn right |
| 9 | |uu | u,u |
| 10 | |dd | d,d |
june / Word tracker.
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 year ago
A small word-tracking program written by someone unfamiliar with programming.
| 1 | |-----------------------------------------| |
| 2 | |--| Word counts. |-| |
| 3 | |-----------------------------------------| |
| 4 | | 1 word | words , , |
| 5 | | 2 words | 1 word , 1 word , |
| 6 | | 3 words | 2 words , 1 word , |
| 7 | | 4 words | 2 words , 2 words , |
| 8 | | 5 words | 3 words , 2 words , |
| 9 | | 6 words | 3 words , 3 words , |
| 10 | | 7 words | 6 words , 1 word , |
june / Minimums for a single frame.
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 year ago
| 1 | Minimums: |
| 2 | 1: |
| 3 | 1: 1 |
| 4 | 2: 1 |
| 5 | @pen-down: 2 |
| 6 | @pen-draw: 105 |
| 7 | @pen-right: 1 |
| 8 | @pen-start: 4 |
| 9 | @pen-stop: 10 |
| 10 | @pen-up: 3 |