From edd17c604ed1e6ffa53f987bf6c66f40c89634da Mon Sep 17 00:00:00 2001 From: Akshay Date: Sat, 27 Mar 2021 14:00:13 +0530 Subject: language annotations in md --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 1e1dccf..0c9c4d9 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ format, [OBI](https://git.peppe.rs/graphics/obi). Requires SDL2 and SDL2_ttf. -``` +```shell # creates a new file if it dosen't exist cargo run -- .obi ``` @@ -31,7 +31,7 @@ Enter the REPL by pressing `(` on the keyboard. Complete the lisp expression with a closing parenthesis and hit enter to execute it. The REPL supports basic readline operations. -``` +```lisp (define (fac n) (if (<= n 1) 1 (* n (fac (- n 1))))) (fac 5) ``` -- cgit v1.2.3