function signatures

This commit is contained in:
NikVolf
2017-03-30 23:23:54 +03:00
parent 779f3257cd
commit 054e9d71e2
3 changed files with 36 additions and 7 deletions

View File

@ -19,6 +19,9 @@ fn main() {
&Section::Import(ref import_section) => {
println!("Imports {}", import_section.entries().len());
},
&Section::Function(ref functions_section) => {
println!("Functions {}", functions_section.entries().len());
},
_ => {},
}
}