Initial commit
- Author
- RepoArena committed 2 hours ago
- Commit
- d1a2c9611e6a55155ac6234a4059bbe4f27da24f
- Root
- root commit
7 changed files with +22 −0
| @@ -0,0 +1,5 @@ | ||
| 1 | + # RepoArena | |
| 2 | + | |
| 3 | + A self-hosted git forge built to learn how GitHub works. | |
| 4 | + | |
| 5 | + Clone over HTTPS or SSH, push commits, open issues. | |
| @@ -0,0 +1,3 @@ | ||
| 1 | + # Unicode filename | |
| 2 | + | |
| 3 | + Proves that non-ASCII paths resolve on every route. | |
| @@ -0,0 +1,3 @@ | ||
| 1 | + one | |
| 2 | + two | |
| 3 | + three | |
No content changes.
| @@ -0,0 +1 @@ | ||
| 1 | + just one line, no newline at the end | |
Binary file not shown.
| @@ -0,0 +1,10 @@ | ||
| 1 | + // A tiny sample module so the repo has browsable source. | |
| 2 | + export function greet(name: string): string { | |
| 3 | + return `Hello, ${name}!`; | |
| 4 | + } | |
| 5 | + | |
| 6 | + export function add(a: number, b: number): number { | |
| 7 | + return a + b; | |
| 8 | + } | |
| 9 | + | |
| 10 | + console.log(greet("RepoArena")); | |