vikrant/repoarenaPublic

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

  • typescript
  • git
  • nextjs

1 star · Updated 4 hours ago

feature/login
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"));