A beginner-friendly, lightweight programming language inspired by JavaScript. Perfect for learning programming fundamentals with intuitive and readable syntax.
Rui's syntax is designed to be intuitive and easy to understand. Write clean, readable code without complex syntax rules.
// Simple variable declaration
suppose name = "Alice"
suppose age = 25
// Easy function definition
define greet(person) {
write("Hello, " + person + "!")
}
// Clean conditional logic
if (age >= 18) {
write("You are an adult")
} else {
write("You are a minor")
}
// Call the function
greet(name)