π‘How To Use Maryl
This quickstart guide will help you get up and running with Maryl
Step 1: Install a Maryl
git clone git@github.com:MartinFillon/glados.git
cd glados/maryl
makeStep 2: Write Your First Program
int add1(int a, int b){
return a + b;
}
int start(){
int a = 2;
int y = 6;
return add1(y, 2);
}Step 3: Run the Program
Step 4: Experiment with Variables
Step 5: Learn More
Last updated

