Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xXenvy committed Jul 29, 2024
1 parent b470fe0 commit 43326fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Zynk offers several primitive data types:
- **Integer (`int`)**: Represents whole numbers without decimals.
- **Float (`float`)**: Represents numbers with decimals.
- **Bool (`bool`)**: Represents truth values, true or false (1 and 0).
- **String (`String`)**: Represents sequences of characters.
- **String (`string`)**: Represents sequences of characters.
2 changes: 1 addition & 1 deletion docs/examples/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This example demonstrates the use of variables and basic output functions.

def main() {
var x: int = 1;
var y: String = "elo";
var y: string = "elo";
println(x);
println(y);
}
Expand Down

0 comments on commit 43326fb

Please sign in to comment.