Flexa is a toy programming language developed for fun.
- Easy Syntax
- Dynamic Typing
- Built-in Libraries
To use Flexa, follow these steps:
- Download the interpreter release (not available yet)
- Navigate to the Flexa directory
- Execute Flexa interpreter by running the following command:
./flexa main.flx
Here's a classic "Hello, World!" program in Flexa:
print("Hello, World!");
Save this code in a file with a .flx
extension, for example, hello.flx
. Then, run it using the Flexa interpreter:
$ ./flexa hello.flx
You should see the output:
Hello, World!
For more detailed information and examples, check out the documentation.
Flexa is an open-source project, and we welcome contributions from the community. Whether you want to report a bug, suggest a feature, or submit code, your help is appreciated. Check out the Contributing Guide to learn how to get involved.
This project is licensed under the MIT License - see the LICENSE file for details.