Skip to content

flexa-script/interpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flexa Interpreter

Flexa is a toy programming language developed for fun.

Features

  • Easy Syntax
  • Dynamic Typing
  • Built-in Libraries

Getting Started

Installation

To use Flexa, follow these steps:

  1. Download the interpreter release
  2. Navigate to the Flexa directory
  3. Execute Flexa interpreter by running the following command: ./flexa main.flx

Hello, World!

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.

Contributing

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.

License

This project is licensed under the MIT License - see the LICENSE file for details.