Flascript
Fegeya FlaScript is new generation programming language.
Install / Use
/learn @ferhatgec/FlascriptREADME
<img src="docs/resource/FlaScript_Logo.png" align="left" alt="Fegeya FlaScript logo by @ferhatgec" width="60" height="60">
Fegeya FlaScript
Fegeya FlaScript is new generation programming language.
Features:
* Supports dynamic & real-time review.
* Built-in compress/decompress algorithm.
* Fast, functional scripting language.
* Standard library & Built-in PlusPlus libraries (core).
* Inline language (Brainfuck) virtual machine, manipulator.
* And more cool stuff!
A taste of FlaScript
import(<stdlib/output/Colorized.flsh>) -> color <-
defin[slashn] -> print(newline) <-
func -> PrintWithColor() {
put[color -> RED <-]
print(string) -> "Whoa! Hello developer!"
put[color -> BLACK_COLOR <-]
put[slashn]
} PrintWithColor;
main() -> main {
func -> PrintWithColor()
} main;
