From 820365394251e2da73ef44fcf93d933242a4a197 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 27 May 2023 17:55:37 +0200 Subject: Context added --- content/notes/drawing-pixels-in-plan9.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/notes/drawing-pixels-in-plan9.md b/content/notes/drawing-pixels-in-plan9.md index 6ce8973..43e890b 100644 --- a/content/notes/drawing-pixels-in-plan9.md +++ b/content/notes/drawing-pixels-in-plan9.md @@ -13,6 +13,7 @@ alternative for drawing that draws a yellow square on a red background. ![Plan9 Howdy World!](/notes/plan9-pixels.png) ```c +// main.c #include #include #include @@ -52,6 +53,7 @@ void main(int argc, char *argv[]) And then compile with `mk` (mkfile below): ```makefile +# mkfile