Added in basic transformation and generation for functions

This commit is contained in:
Nathan Braswell
2016-01-06 02:46:42 -05:00
parent f29fdcd463
commit 337bc424ee
7 changed files with 180 additions and 34 deletions

View File

@@ -7,7 +7,10 @@ obj Something (ObjectTrait) {
}
}
fun main(): int {
fun some_function(): float {
return 0
}
fun some_other_function(in: bool): int {
return 0
}