Skip to content

Instantly share code, notes, and snippets.

@KoviRobi
Last active January 15, 2026 16:32
Show Gist options
  • Select an option

  • Save KoviRobi/38429b3783c69e2d8f956ac041e28be8 to your computer and use it in GitHub Desktop.

Select an option

Save KoviRobi/38429b3783c69e2d8f956ac041e28be8 to your computer and use it in GitHub Desktop.
Executable literate programming markdown

Note: Full write-up at https://github.com/KoviRobi/dolpo — this was the original proof of concept.

Worked example

Some example C file:

File hello.c

#include <stdio.h>

int main() {
    printf("Hello, world\n");
}

And compile using

Run

cc hello.c -o hello.elf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment