Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README with latest features. #22

Merged
merged 1 commit into from Mar 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -12,6 +12,7 @@ Checkout the project using git. Then open it up using Xcode and run the project.

So far, the following have been implemented in `slox`:

- Native numeric, boolean, and string types, as well as `nil`
- Evaluation of expressions, including support for numeric, logical, and equality operators
- Native `print` statement
- `if`, `while`, and `for` statements
Expand All @@ -24,6 +25,9 @@ So far, the following have been implemented in `slox`:
- Class-level properties and methods
- Single inheritance
- Invoking superclass methods via `super`
- List literals using square brackets
- Native functions for lists, `append()` and `deleteAt()`
- `break` and `continue` for flow control within loops

# Design

Expand Down