Skip to content

Commit b0376a2

Browse files
committed
0.35.1
1 parent 184f05a commit b0376a2

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.35.1
4+
5+
- 'ge' was misnamed as 'gt'
6+
37
## 0.35.0
48

59
- Added the 'slice' builtin operator

page.nimble

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Package
22

3-
version = "0.35.0"
3+
version = "0.35.1"
44
author = "Nuclear Pasta"
5-
description = "A PostScript-like language"
5+
description = "A PostScript-like language."
66
license = "Apache-2.0"
77
srcDir = "src"
88
bin = @["page"]

src/builtins.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -810,9 +810,9 @@ X Y -> X > Y
810810
Compares X and Y.
811811
""", `>`)
812812

813-
addBoolOp("gt",
813+
addBoolOp("ge",
814814
"""
815-
'gt'
815+
'ge'
816816
X Y -> X >= Y
817817
Compares X and Y.
818818
""", `>=`)

0 commit comments

Comments
 (0)