add gitattributes and fix whitespace issues

This commit is contained in:
Daniel Micay
2013-05-03 19:25:04 -04:00
parent bfd3cd8171
commit 86efd97a10
433 changed files with 196 additions and 597 deletions

View File

@@ -48,7 +48,7 @@ class cat : map<int, bool> {
}
fn size() -> uint { self.meows as uint }
fn insert(+k: int, +v: bool) -> bool {
fn insert(+k: int, +v: bool) -> bool {
if v { self.meows += k; } else { self.meows -= k; };
true
}