Update README.md. Updated main.c.

This commit is contained in:
Jacob Signorovitch 2024-12-21 11:10:01 -05:00
parent 653736622f
commit ee3f2919c6
2 changed files with 17 additions and 5 deletions

View File

@ -1,6 +1,15 @@
# SCL: Simple CAS Language
## Syntax
## Current State
The following things are possible:
1. Floating-point numbers
2. Negative numbers
3. Addition
4. Subtraction
5. Multiplication
## Syntax (Planned)
As one would expect, you can evaluate simple infix expressions:
@ -20,9 +29,9 @@ You can also define your own functions:
Symbolic algebra is done in the following manner:
```scl
> f(x) = e^x
> f(x) = x^4
> diff(f, x:sym, 2)
= e^x
= 12x^2
```
SCL will dynamically decide on types, but you can state them explicitly as

View File

@ -41,11 +41,14 @@ int main(int argc, char** argv) {
if (ln->ln > 0) {
inp = ln->buf;
if (yyparse() == 0) printf("Parsed successfully!\n");
else printf("Parse error.\n");
if (yyparse() == 0) {
log_dbg("Parsed successfully!\n");
} else printf("Parse error.\n");
exec_print(exec_expr(root));
#ifdef DBG
ast_print(root);
#endif
}
dstr_destroy(ln);