diff --git a/content/posts/backtraces_in_valeri/note.md b/content/posts/backtraces_in_valeri/note.md index 3542b40..1915713 100644 --- a/content/posts/backtraces_in_valeri/note.md +++ b/content/posts/backtraces_in_valeri/note.md @@ -9,7 +9,8 @@ runtime errors, you'll now get the call stack printed to stdout, pretty much as you would expect in other programming languages. Let's look at an example: ``` -(fn get-foo (obj) (get obj :foo) +(fn get-foo (obj) + (get obj :foo) ) ;; This will fail becaue :foo is not present