aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 1227e94b6e88727e10de86ede2aef094ab71fccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Felan
A strongly statically typed programming language with a simple and friendly syntax

# Why Felan?
* Easy to understand
* Powerful type system
* Compile time execution

# Examples
## Hello world
```
@import("basic.felan");

main :: () -> void {
  print("Hello, world!");
};
```
## Printing
```
@import("basic.felan");

main :: () -> void {
  b := 1234;
  print(b);
  a : i8 = 32;
  print(a);
  print("This is a string");
};
```