V1 RELEASE IS HERE

Tess, a new way to create

A new memory safe language built for highest performance, write code that compiles or runs within seconds for millions of users.

$winget install Tess.tess
Native Performance
Memory Safe
Explorer
tess
main.tess
1cls Math {
2 f! mul(a, b) <<
3 return:: a * b,
4 >>
5}
6
7f! add {
8 x = 5
9 y = 10
10 return:: x + y,
11}
12
13f! main {
14 ptr = mem.alloc(100)
15 asm.alloc_exec(1024)
16
17 if ptr == null {
18 print:: "PTR IS NULL",
19 else::
20 print:: "PTR IS NOT NULL",
21 }
22 sys.exit(0)
23}
Ready
Ln 1, Col 1
UTF-8
Tess