Skip to content

Instantly share code, notes, and snippets.

View LizardoReyes's full-sized avatar
🏠
Working from home

Lizardo Reyes LizardoReyes

🏠
Working from home
View GitHub Profile
@LizardoReyes
LizardoReyes / dia-15.ts
Last active March 7, 2026 00:17
Día 15: Proyecto Final en TypeScript
// Día 15: Proyecto Final en TypeScript
interface Tarea {
id: number;
texto: string;
completada: boolean;
}
let tareas: Tarea[] = [];