From e3da1b9164cf45e8f49015bde6734770d27657bf Mon Sep 17 00:00:00 2001
From: anon <anon@anon.anon>
Date: Wed, 13 Sep 2023 14:52:27 +0200
Subject: [PATCH] hl readme

---
 README.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/README.md b/README.md
index d9bcc04..56a21e3 100644
--- a/README.md
+++ b/README.md
@@ -11,13 +11,19 @@ Easy MAKE
 I make many example/test files, many require linking and trying to remember which libraries are dependencies or copying the right command from the source file gets old fast.
 
 ### Example
+```sh
 	$ cat test/hw.c
+```
+```C
 	// @COMPILECMD gcc $@ -o hw.out
 	#include <stdio.h>
 
 	void main(){
 			puts("Hello world");
 	}
+```
+```sh
 	$ ./emake test/hw.c
 	$ ./hw.out
 	Hello world
+```