Iona Programming Language
Overviewโ
Iona is a modern, highly asynchronous programming language designed for building scalable and efficient software. Iona focuses on modern practices like immutability, asynchronous computing and composition.
Featuresโ
- ๐ฎ Powered by .NET: Iona runs on .NET, allowing it to consume any CLR compatible language.
- ๐ง Immutability: Immutable data structures and functions by default to increase robustness and predictability.
- ๐งต Asynchronous by Nature: Iona features sophasticated programming paradigms to make asynchronous programming enjoyable.
- ๐ฎ Modern Syntax: Clean and expressive syntax, enabling developers to achieve more with fewer lines and clear readability.
- ๐๏ธ Scalability: Iona is by nature scalable. Go small or run big.
- ๐ Strong Typing with Inference: Strong typing capabilities with intelligent type inference.
- ๐ Batteries included: Sophisticated standard library and first-class frameworks for various of tasks.
- ๐ Secure by design: Highest standards on security, ensuring your apps are safe by default.
Installationโ
# Replace <version> with the desired version
curl -sSL https://ionalang.org/install.sh | sh -s -- <version>
Quick Startโ
A simple "Hello, World!" in Iona:
class World {
let name: String
init(name: String) {
self.name = name
}
fn hello() -> String {
"Hello World"
}
}
fn main() {
let world = World()
print(world.hello())
}
Communityโ
- GitHub: github.com/Iona-lang
- Discord: Join our Iona Discord Community
Contributingโ
We love contributions! If you're interested in contributing, please read our Contributing Guide.