diff --git a/README.md b/README.md index 63eb9ca..cbb994d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,9 @@ ## Introduction This language was written as a personal study of how interpreters and compilers work. For this reason, the language is very basic. One of the main inspirations was CPython. -Noja is a very high level and dynamic language. It operates in the same range of abstraction as languages like Ruby, Python and Javascript. +Noja is a very high level language. It operates in the same range of abstraction as languages like Ruby, Python and Javascript. + +If you want to know more, check out the `/docs` folder for documentation and `/examples` for - you guessed it - some examples! ## Objective This project aims at being an interpreter design reference, therefore it optimizes for code quality and readability. That's not to mean that it won't be feature-complete. The end goal is to have a language you can do arbitrarily complex things in. diff --git a/src/cli/main.c b/src/cli/main.c index 58a75fe..67fff71 100644 --- a/src/cli/main.c +++ b/src/cli/main.c @@ -54,7 +54,7 @@ static void help(FILE *stream, const char *name) " -i, --inline Execute a string of code instead of a file\n" " -a, --assembly Specify that the source is bytecode and not noja code\n" " -p, --profile Profile the execution of the source (can't be used with -d)\n" - " -o, --output Specify the output file of -p or -d\n" + " -o, --output Specify the output file of -p\n" " -H, --heap Specify the heap size of the runtime\n" "\n"); }