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
-
Download the latest
.zip
release from the Releases page. -
Unzip the downloaded file to a folder on your computer.
Running Mrya
Currently, Mrya runs through a Python script called mrya_main.py
.
-
Open a terminal or command prompt.
-
Navigate to the folder where you unzipped Mrya.
-
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!