Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- The `debug` statement now accepts multiple arguments

### Deprecated

### Removed

### Fixed

- Using `debug` to print strings no longer crashes

### Security
2 changes: 1 addition & 1 deletion docs/language-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ when more text is needed */</code></td></tr>
<div className="language-table">
<table>
<tr><th>Feature</th><th>Example</th></tr>
<tr><td>Print something (real/integer/string) to debug</td><td><code>debug(something)</code></td></tr>
<tr><td>Print something (real/integer/string) to debug</td><td><code>debug("Example: ", 32)</code></td></tr>
<tr><td>Printing and adding a new line</td><td><code>printLn(text);</code></td></tr>
<tr><td>Printing without adding a new line</td><td><code>print(text);</code></td></tr>
<tr><td>Print only an empty line</td><td><code>print("\n");</code></td></tr>
Expand Down