hebi 0.4.0

A dynamic scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
source: src/internal/vm/tests.rs
expression: snapshot
---
# Source:
v := 10 # 10
v += 1  # 11
v -= 1  # 10
v **= 2 # 100
v /= 5  # 20
v %= 1  # 0
v


# Result:
Float(
    0.0,
)