diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..1227e94 --- /dev/null +++ b/README.md @@ -0,0 +1,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"); +}; +``` |