2015년 3월 21일 코딩모임
use chrono::{DateTime, Local, Duration};
// http://www.toz.co.kr/branch/main/index.htm?id=24
// 사랑해요 네이버 개발자센터!
let place = "강남토즈타워점";
assert!(place != "토즈 강남점");
let start = Local.ymd(2015, 3, 21).and_hms(14, 0, 0);
let end = start + Duration::hours(4);
// 추가하려면 klutzy를 호출
let mut members_and_tasks: Vec<(&'static str, &'static str)> = vec![
("klutzy", "suruga"),
("sanxiyn", "rustc span"),
("Kroisse", "rvwe"), // <Kroisse> rvwe가 대체 뭐죠
("김젼", "glium"),
("lifthrasiir", "strconv"),
("youknowone", "rust-objc"),
];
members_and_tasks.reserve(2);
assert!(members.iter().all(|&(ref member, _)| member.has_laptop()));