Wooo! Fixed up remaining bugs in new syntax!

This commit is contained in:
Nathan Braswell
2015-05-09 06:24:56 -04:00
parent acf751c016
commit 87e1853713
47 changed files with 277 additions and 284 deletions

View File

@@ -1,11 +1,11 @@
template<T> |T| greater(|T| a, |T| b) {
fun greater<T>(a: T, b: T): T {
if (a > b)
return a;
return b;
}
template<T> |T| lesser(|T| a, |T| b) {
fun lesser<T>(a: T, b: T): T {
if (a > b)
return b;
return a;