1 2 3 4 5 6 7 8
use use_event_log::EventLog; fn main() { let mut log = EventLog::new(); log.append("command.started"); assert_eq!(log.last(), Some(&"command.started")); }