Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fanx-dev/fanx
A full-stack programming language
https://github.com/fanx-dev/fanx
compiler fantom full-stack language llvm programming-language virtual-machine
Last synced: about 2 months ago
JSON representation
A full-stack programming language
- Host: GitHub
- URL: https://github.com/fanx-dev/fanx
- Owner: fanx-dev
- License: afl-3.0
- Created: 2018-04-30T09:46:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T14:50:11.000Z (7 months ago)
- Last Synced: 2024-08-01T19:53:06.275Z (5 months ago)
- Topics: compiler, fantom, full-stack, language, llvm, programming-language, virtual-machine
- Language: Fantom
- Homepage: http://fanx.dev
- Size: 3.2 MB
- Stars: 170
- Watchers: 9
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-programming-languages - Fanx - Fanx is a full-stack programming language base on Fantom. It is an object oriented and static typing language with elegant libraries. (Uncategorized / Uncategorized)
README
# Fanx Programming Language
Fanx is a full-stack programming language base on Fantom.
It is an object oriented and static typing language with elegant libraries.
## Features
#### Portability
Multi target to JVM, JavaScript, C and standalone VM#### Beautiful Syntax
Generics type, lambda/closures, non-nullable type, async/await ...#### Concurrency Safe
Built-in immutability and actor model, safe in compile time#### Cross-platform UI Framework
Write once run on Android/iOS/Web browser/Desktop#### Server-side Framework
Web framework, database ORM, template engine, async/await based IO framewrok ...## Hello World
```fantom
// Hello from Fanx!
class HelloWorld
{
static fun main()
{
echo("Hello, World!")
}
}
```## Installing
* [Download](https://github.com/fanx-dev/fanx/releases)
* [QuickStart](https://github.com/fanx-dev/fanx/blob/master/doc/QuickStart.md)## Documentation
* [Learn More](https://github.com/chunquedong/fanx/blob/master/doc/Index.md)
* [中文文档](https://zhuanlan.zhihu.com/p/63336794)