Getting Started

Welcome to RobinPath! This is a lightweight scripting language designed for automation and data processing. In this tutorial, you'll learn the fundamentals through interactive examples.

RobinPath uses a simple, readable syntax where methods are executed line by line. You can perform calculations, manipulate data, and build complex workflows. Let's start with the basics!

Simple Addition

Simple Addition
# Welcome to RobinPath!
# This is a simple example

math.add 10 20
log "Result:" $

Challenge 1: Calculate the sum of 15 and 25

Use the math.add method to calculate 15 + 25 and log the result.

Challenge 1: Calculate the sum of 15 and 25
# Your code here

Challenge 2: Multiply two numbers

Calculate 7 multiplied by 8 and display the result.

Challenge 2: Multiply two numbers
# Your code here

Challenge 3: Chain operations

Add 10 and 20, then multiply the result by 2. Log the final answer.

Challenge 3: Chain operations
# Your code here