Skip to content

Instantly share code, notes, and snippets.

@BrainMaestro
BrainMaestro / todos.rs
Created February 14, 2017 07:39
Terminal todo application in Rust
use std::{fmt, io};
struct TodoItem {
id: usize,
title: String,
completed: bool,
deleted: bool,
}
struct TodoList {