Move language files into dedicated folder

This commit is contained in:
Yura Dupyn 2026-02-07 10:43:30 +01:00
parent 3d1cd89067
commit 1b406899e0
15 changed files with 7 additions and 343 deletions

View file

@ -1,10 +0,0 @@
export type Result<T, E> =
| { tag: "ok", value: T }
| { tag: "error", error: E }
export namespace Result {
export function ok<T, E>(value: T): Result<T, E> { return { tag: "ok", value } }
export function error<T, E>(error: E): Result<T, E> { return { tag: "error", error } }
}