Erg is a statically typed language that is Python compatible.
English | 日本語
Some features are not yet implemented. Please see TODO.md for implementation status.
Robustness
Erg has a smart & powerful type system. For example, Erg can do null checking (Option type), division by zero and out-of-range addresses in arrays at compile time.
```python rand = import "random"
l = [1, 2, 3] assert l in [Nat; 3] # type checking assert l in [1..3; 3] # more detailed l2 = l.push(rand.choice! 0..10) assert l2 in [0..10; 4] assert l2 + [3, 5, 7] in [0..10; 7]
l2[10] # IndexError: l2
has 7 elements but was accessed the 10th element
2.times! do!: print! "hello, ", end: ""
-2.times! do!: print! "hello, ", end: ""
.times!
is a method of Nat
(0 or more Int), not Int
{Meter; Sec; meter; yard; sec; ...} = import "unit"
velocity x: Meter, t: Sec = x / t
v = velocity 3yard, 2sec # TypeError: the type of x
was mismatched: expect Meter
, found Yard
v = velocity 3meter, 2sec # v == 1.5 m/s
```
Simplicity
Erg consists of a very simple syntax, which can significantly reduce the amount of code compared to other languages. However, its functionality is not inferior to them.
Since the type inference system is powerful, you can code like a dynamically typed language.
python
fib 0 = 0
fib 1 = 1
fib n = fib(n - 1) + fib(n - 2)
assert fib(10) == 55
In Erg, there are very few things that are treated as special; there are no reserved words. even for and while expressions are just one of the subroutines, so this is possible.
```python loop! block = while! True, block
while! True, do! print! "hello"
loop! do!: print! "hello" ```
Functional & Object-oriented
Erg is a pure object-oriented language. Everything is an object; types, functions, and operators are all objects. On the other hand, Erg is also a functional language. Erg requires some kinds of markers to be placed on code that causes side effects or changes internal state, which can localize the complexity of code. This will greatly improve the maintainability of your code.
```python
.sorted()
in Pythonimmutarr = [1, 3, 2] assert immutarr.sort() == [1, 2, 3]
mutarr = ![1, 3, 2] mutarr.sort!() assert mut_arr == [1, 2, 3] i = !1 i.update! old -> old + 1 assert i == 2
inc i: Int! = i.update! old -> old + 1
Counter! = Inherit Int! Counter!. new i: Int = Self!::new !i inc! ref! self = self.update! old -> old + 1
c = Counter!.new 1 c.inc!() assert c == 2 ```
Interoperability
Erg is internally compatible with Python and can import the Python API at zero cost.
```python
math, time = pyimport "math", "time" {sin; pi; ...} = math
Tqdm! = pyimport("tqdm").'tqdm'
print! sin pi # 1.2246467991473532e-16 for! Tqdm!.'call'(0..99), i => time.sleep! 0.01 * i ```
Readable Error Messages
Erg emphasizes the readability of error messages; Erg is a programmer-friendly language, ~~unlike C++.~~
python
proc! x =
l = [1, 2, 3]
l.push!(x)
l
console
Error[#12]: File example.er, line 3, in <module>::proc!
2│ l = [1, 2, 3]
3│ l.push!(x)
^^^^^
AttributeError: Array object has no attribute `.push!`
hint: in order to update the internal state of an object, make it mutable by using `!` operator
hint: `Array` has `push`, see https://erg-lang.org/docs/prelude/Array/##push for more information
hint: `Array!` has `push!`, see https://erg-lang.org/docs/prelude/Array!/##push! for more information
sh
cargo install erg
Building from source code requires the Rust toolchain.
sh
git clone https://github.com/erg-lang/erg.git
cd erg
cargo build --release
Contributions are always welcome! If you have any questions, please feel free to ask them on the Discord channel.
Erg is distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-APACHE, LICENSE-MIT for details.