minor readme modifications
This commit is contained in:
@@ -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
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user