vikrant/repoarenaPublic

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

  • typescript
  • git
  • nextjs

1 star · Updated 6 hours ago

c514f8ff4b7748e0f049371aeddb7372992d3c97
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"));