Hello, World!

April 19, 2024


This markdown page should be at /hello

// this is a comment
function foo (x: number) : number {
    return x + 1;
}

console.log(foo(5));
Home