Getting Started - mrya-lang/Mrya GitHub Wiki

Getting Started with Mrya

Welcome to Mrya, a simple and beginner-friendly programming language. This guide will help you install and run Mrya quickly.


Installation

  1. Download the latest .zip release from the Releases page.

  2. Unzip the downloaded file to a folder on your computer.


Running Mrya

Currently, Mrya runs through a Python script called mrya_main.py.

  1. Open a terminal or command prompt.

  2. Navigate to the folder where you unzipped Mrya.

  3. Run the following command to execute the example program:

python mrya_main.py

This will run the example file located at examples/hello.mrya. Feel free to open and edit this file to experiment with Mrya.


Future Updates

Soon, Mrya will support running .mrya files directly from the command line. For example:

mrya your_file_name.mrya

This feature will let you run any Mrya program easily without calling the Python script.


Next Steps

  • Modify the examples/hello.mrya file to try out Mrya's variable declarations and output commands.
  • Explore the Language Syntax page for more details.
  • Follow the repository for updates and new releases.

Support

If you run into any issues or have questions, please open an issue in the GitHub repository.

Happy coding with Mrya!