def fibonacci(n)
return n if n <= 1
fibonacci(n - 1) + fibonacci(n - 2)
end
Code Examples
Use inline code for short references.
Fenced Code Blocks
Another Example
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
For syntax-highlighted code with copy buttons, line numbers, and themes,
use the CodeBlockComponent instead.