2024-03-03 12:55:55 +01:00
.
2023-06-26 17:53:27 -04:00
2024-03-03 12:55:55 +01:00
2023-11-21 22:10:58 +01:00

mers

See the mers readme for more info.


"Hello, World!".println

Hello, World!


my_var := "Hello, Variable!"
my_var.println

Hello, Variable!


(1, 2, 3, 4).sum.println

10


(1, "2", 3, 4).sum.println

err1


(1, 2, 3, 4).as_list.debug

List<Int> :: [1, 2, 3, 4]


(1.0, 2.0).as_list.debug

List<Float> :: [1, 2]


(1, 2, 3.5).as_list.debug

List<Int/Float> :: [1, 2, 3.5]


int_list := (1, 2, 3).as_list
float_list := (4.5, 6.0).as_list
int_list.chain(float_list).as_list.debug

List<Int/Float> :: [1, 2, 3, 4.5, 6]

Description
high-level, safe, and simple programming language
Readme 13 MiB
Languages
Rust 89.1%
C 10.4%
JavaScript 0.3%