vikrant/repoarenaPublic

A self-hosted git forge built to learn how GitHub works.

  • typescript
  • git
  • nextjs

1 star · Updated 2 hours ago

d1a2c9611e6a55155ac6234a4059bbe4f27da24f
10 lines · 239 BHistoryRaw
// A tiny sample module so the repo has browsable source.
export function greet(name: string): string {
  return `Hello, ${name}!`;
}

export function add(a: number, b: number): number {
  return a + b;
}

console.log(greet("RepoArena"));