We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184f05a commit b0376a2Copy full SHA for b0376a2
3 files changed
changelog.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 0.35.1
4
+
5
+- 'ge' was misnamed as 'gt'
6
7
## 0.35.0
8
9
- Added the 'slice' builtin operator
page.nimble
@@ -1,8 +1,8 @@
# Package
-version = "0.35.0"
+version = "0.35.1"
author = "Nuclear Pasta"
-description = "A PostScript-like language"
+description = "A PostScript-like language."
license = "Apache-2.0"
srcDir = "src"
bin = @["page"]
src/builtins.nim
@@ -810,9 +810,9 @@ X Y -> X > Y
810
Compares X and Y.
811
""", `>`)
812
813
-addBoolOp("gt",
+addBoolOp("ge",
814
"""
815
-'gt'
+'ge'
816
X Y -> X >= Y
817
818
""", `>=`)
0 commit comments