English attestation: ran

Attested Sentence: Yesterday, I ran to the station.

import type { Surface } from "dumling/types";

export const ranSurface = {
	language: "en",
	normalizedFullSurface: "ran",
	surfaceKind: "Inflection",
	inflectionalFeatures: {
		tense: "Past",
		verbForm: "Fin",
	},
	lemma: {
		language: "en",
		canonicalLemma: "run",
		lemmaKind: "Lexeme",
		lemmaSubKind: "VERB",
		inherentFeatures: {},
		meaningInEmojis: "🏃",
	},
} satisfies Surface<"en", "Inflection", "Lexeme", "VERB">;

export const ranSurfaceId =
	"Surface,Inflection,ran,tense=Past|verbForm=Fin,Lemma,en,Lexeme,VERB,run,🏃," as const;