Crates.io | airlang |
lib.rs | airlang |
version | 0.18.0 |
created_at | 2022-08-03 08:16:43.865552+00 |
updated_at | 2025-08-29 13:35:48.725641+00 |
description | The Air Programming Language |
homepage | |
repository | https://github.com/LambdaAlpha/airlang_rs |
max_upload_size | |
id | 637905 |
size | 455,796 |
It is designed to be a universal, scalable and optimal programming language for abstraction-optimization and problem-solving.
It is an experimental proof-of-concept project and is still in the very early stages of development.
abstraction
and problem
in theoretical computer science_("A demo of implementing a C-like for function")
_ do [
c_for = _ function {
code : (.ctx : .args) : _ do [
[.init, .condition, .next, .body] = .args,
.ctx ; apply _ do [
.init,
.condition loop [
.body,
.next,
],
],
],
},
_ c_for [[i = 1, sum = 0], i <= 10, i = i + 1, sum = sum + i],
sum
]