untitled.ts
1
2
3
4
5
6
// Welcome to Maple Editor
// A custom-built code editor with VS Code-like experience
 
function fibonacci(n: number): number {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);

Explorer

Maple Editor
Ln 1, Col 1TypeScriptUTF-8