mirror of
https://github.com/nocturn9x/nimkalc.git
synced 2026-01-13 16:34:44 +01:00
Added golden ratio (phi) constant
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Package
|
||||
|
||||
version = "0.2.7"
|
||||
version = "0.2.8"
|
||||
author = "Mattia Giambirtone"
|
||||
description = "An advanced parsing library for mathematical expressions and equations"
|
||||
license = "Apache 2.0"
|
||||
|
||||
@@ -37,7 +37,8 @@ const constants = to_table({
|
||||
"e": Token(kind: TokenType.Float, lexeme: "2.718281828459045"),
|
||||
"tau": Token(kind: TokenType.Float, lexeme: "6.283185307179586"),
|
||||
"inf": Token(kind: TokenType.Float, lexeme: "inf"),
|
||||
"nan": Token(kind: TokenType.Float, lexeme: "nan")
|
||||
"nan": Token(kind: TokenType.Float, lexeme: "nan"),
|
||||
"phi": Token(kind: TokenType.Float, lexeme: "1.618033988749895"),
|
||||
})
|
||||
# Since also math functions are hardcoded, we can use an array
|
||||
const functions = ["sin", "cos", "tan", "cosh",
|
||||
|
||||
Reference in New Issue
Block a user