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!

Examples

Simple Addition

Challenges

Challenge 1: Calculate the sum of 15 and 25

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

Challenge 2: Multiply two numbers

Calculate 7 multiplied by 8 and display the result.

Challenge 3: Chain operations

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