Skip to content

Releases: BHznJNs/Calculator.rs

Cursor bug fixed

03 Jun 14:39
Compare
Choose a tag to compare
Cursor bug fixed Pre-release
Pre-release
1.9.0b

`todo`s added && cursor bug fixed

Customized readline && Highlighted REPL

03 Jun 09:19
Compare
Choose a tag to compare
Pre-release
1.9.0a

disabled unsupported character input

Colored output && command-line args appended

21 May 10:37
Compare
Choose a tag to compare

Update log

  • Colored output
  • Command-line args appended:
    • -v, --version
      • print current executable file version and exit.
    • -h, --help
      • print this help message.
    • -t, --timer
      • print extra execute duration message code execution.
    • -hd, --headfile
      • directly import variables in head files, must with script paths following.
  • Boolean type added

1.7.4

03 May 12:18
Compare
Choose a tag to compare
REPL version code update

1.7.3

03 May 05:33
Compare
Choose a tag to compare
example code update && version code update

Compose resolver update & OOP support

16 Apr 09:31
Compare
Choose a tag to compare
1.6.0

compose resolver update & OOP support

Script executing optimized

04 Apr 08:50
Compare
Choose a tag to compare
1.4.3

Comments added

Function & Array

30 Mar 07:29
Compare
Choose a tag to compare
> test_func = fn(i $num) {i + 1}
> test_func(1)
= 2
> test_arr = [1, 2, 3]
= [
  1, 2, 3,
]
> push(test_arr, 4)
> test_arr
= [
  1, 2, 3, 4,
]

`for` & `if` statement supported

19 Mar 10:32
Compare
Choose a tag to compare
a = 0
b = 1
for 10 {c = a + b; a = b; b = c}
out c # 89

1.2.2

17 Mar 08:36
Compare
Choose a tag to compare
Optimized whole program