diff --git a/docs/changelog.md b/docs/changelog.md index 693ca46..36016d8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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 diff --git a/docs/language-overview.md b/docs/language-overview.md index ade9f58..f9cb3d9 100644 --- a/docs/language-overview.md +++ b/docs/language-overview.md @@ -27,7 +27,7 @@ when more text is needed */
| Feature | Example |
|---|---|
| Print something (real/integer/string) to debug | debug(something) |
| Print something (real/integer/string) to debug | debug("Example: ", 32) |
| Printing and adding a new line | printLn(text); |
| Printing without adding a new line | print(text); |
| Print only an empty line | print("\n"); |