minor readme modifications

This commit is contained in:
Francesco Cozzuto
2023-01-25 01:38:59 +01:00
parent 401aeb130f
commit 9ce224c6b9
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -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.
+1 -1
View File
@@ -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 <file> Specify the output file of -p or -d\n"
" -o, --output <file> Specify the output file of -p\n"
" -H, --heap <size> Specify the heap size of the runtime\n"
"\n");
}