An open API service indexing awesome lists of open source software.

https://github.com/marcelgarus/dungbeetle

A tiny toy VM that consists of 256 bytes of memory and a cursor.
https://github.com/marcelgarus/dungbeetle

Last synced: 3 days ago
JSON representation

A tiny toy VM that consists of 256 bytes of memory and a cursor.

Awesome Lists containing this project

README

          

# dungbeetle

A tiny toy VM that consists of 256 bytes of memory and a cursor.

![screenshot](screenshot.png)

The memory is used to store variables and instructions, document the code, and place the output.
There is no separate mode for running programs.

Given the minimalist nature of the project, it's in no way fit for productive work.
But it's fun.

## getting started

1. Install Zig.
2. Run `zig build run -- intro.dung`

## why?

I created this project as an exercise to learn Zig and tinker with terminal UIs.