Log In  
Follow
pico8lispr
Pico8Lisp
by

Cart #dragonmountain2-0 | 2023-06-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

This is a game I made a few years ago for my little kids.
They love saving the dragon.

7
2 comments



Small minesweeper clone.
Keyboard controls: Arrows to move yellow selector. x to flag, z to sweep.
Mouse controls: left click to sweep, right click to flag.

sweeping on already cleared cells auto-flags or auto-sweeps if the solution for the square is clear from the label and adjacent uncleared or flagged cells.

Cart #sweeper-0 | 2022-10-24 | Code ▽ | Embed ▽ | No License

0 comments



Cart #picooids-0 | 2022-06-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Fun little asteroids clone.
Left and right to turn. Up moves you forward. X fires your cannon.
Destroy all the asteroids to move on to the next level.
Collect blue power ups to recharge your shields.
Collect orange power ups to improve your cannon.
Beware the locals: they are friendly, unless provoked.

6
1 comment



Cart #dragonmountain2-0 | 2023-06-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

This is a little snake clone, where the user advances the snake manually.
I made it for my 4 year old as a one day build. So far, she's unable to deal with the snake advancing automatically.
Since then, I've spent some time improving the music and art.

6
1 comment



Pico8lisp is a small lisp interpreter built on PICO-8 virtual machine!

You can find a walkthrough of the programming language features on my github here: https://github.com/andrewguy9/pico8lisp

Try it out!

Cart #pico8lisp1-7 | 2021-09-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
15

Using the REPL

You can type commands directly into the shell.

> (+ 1 2)
  3

<return> submits the command.

Press <up> and <down> to scroll through your command history.

Press <left> and <right> to move the cursor.

<backspace> will remove the character to the left of the cursor.

<shift>-d will remove the character to the right of the cursor.

Toggle between insert and replace modes by pressing <shift>-I.

[ Continue Reading.. ]

15
0 comments