From fd03f34bc31c3764e8533e4fae9550d79a245301 Mon Sep 17 00:00:00 2001 From: A404M Date: Wed, 28 May 2025 14:36:53 +0330 Subject: add basic README.md --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md (limited to 'README.md') 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"); +}; +``` -- cgit v1.2.3