Added in checking the stdlib directory to Kalypso

This commit is contained in:
Nathan Braswell
2016-02-05 21:34:25 -05:00
parent f941cb98dd
commit 7a2cef08e8
6 changed files with 33 additions and 8 deletions

View File

@@ -1,13 +1,13 @@
import io;
import simple_print;
fun addAndPrint<T>(a: T, b: T): T {
io::print(a+b);
simple_print::print(a+b);
return a+b;
}
fun main(): int {
addAndPrint<int>(10,12);
io::print("\n");
simple_print::print("\n");
return 0;
}