Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbrnowski committed Dec 16, 2024
1 parent 8f8301a commit a03be48
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

[![actions status](https://github.com/mdbrnowski/linalg-language/actions/workflows/test.yml/badge.svg)](https://github.com/mdbrnowski/linalg-language/actions)

> [!IMPORTANT]
> Python is known to be slow. This language has an interpreter *written in Python*. It will be *very* slow. Apart from providing nice syntax for matrices and tensors, it has absolutely nothing to offer; sorry about that.
To see all available commands, simply run `./main.py`.

I'm afraid you'll need to explore the language on your own, since I haven't had the time to write anything resembling proper documentation.

Here is a sample of code:

```
a = 0;
b = 1;
n = 10000;
while (a < n) {
print a;
temp = a;
a = b;
b += temp;
}
```

For more, you can browse [tests](./tests).

0 comments on commit a03be48

Please sign in to comment.