🔮 Inline Rip Demo

Rip code embedded directly in HTML with <script type="text/rip">

# This Rip code runs automatically!
def greet(name)
  "Hello, ${name}! 👋"

def fibonacci(n)
  if n <= 1
    n
  else
    fibonacci(n - 1) + fibonacci(n - 2)

Output

Click the buttons to see Rip in action!