Skip to content

Commit

Permalink
Added named property example in CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
giann committed Jan 23, 2024
1 parent efdcf34 commit 36f6969
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
## Added
- REPL (https://github.com/buzz-language/buzz/issues/17) available by running buzz without any argument
- Function argument names and object property names can be ommitted if the provided value is a named variable with the same name (https://github.com/buzz-language/buzz/issues/204)
```buzz
object Person {
str name,
str lastName,
}
const name = "Joe";
const lastName = "Doe";
const person = Person {
name,
lastName,
};
```
- Sandboxing build options `memory_limit` and `cycle_limit` (https://github.com/buzz-language/buzz/issues/182)
- Block expression (https://github.com/buzz-language/buzz/issues/105):
```buzz
Expand Down

0 comments on commit 36f6969

Please sign in to comment.