forth: Self-hosted mal passes all tests
[jackhill/mal.git] / c / step1_read_print.c
index 77c75b9..264528d 100644 (file)
@@ -1,6 +1,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <unistd.h>
+
 #include "types.h"
 #include "readline.h"
 #include "reader.h"
@@ -63,7 +64,7 @@ int main()
     // Set the initial prompt
     snprintf(prompt, sizeof(prompt), "user> ");
  
-    // REPL loop
+    // repl loop
     for(;;) {
         exp = RE(NULL, prompt, NULL);
         if (mal_error && strcmp("EOF", mal_error->val.string) == 0) {