Skip to content

Commit

Permalink
backfill changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
imaman committed Nov 12, 2024
1 parent 8f7e88c commit 1ea0c9a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/septima-lang/change-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
- supoort sorting an array: `[97, 100, 50].sort()`, `['the', 'quick', 'brown', 'fox'].sort((a, b) => a.length - b.length)`
- fix object comparsion

### PR/173
### #173

- support block comments `4 + /* now five */ 5`
- support default values for function args: `(a, b = 1000) => a + b`
- inspect the runtime type of a value via `constructor.name`

### PR/174

- allow a dangling comma after last formal arg of an arrow function `(a,b,) => a + b`

0 comments on commit 1ea0c9a

Please sign in to comment.