More extension bike shedding.
This commit is contained in:
12
test/multiple_functions.ink
Normal file
12
test/multiple_functions.ink
Normal file
@@ -0,0 +1,12 @@
|
||||
foo :: () -> int {
|
||||
return 5;
|
||||
}
|
||||
|
||||
bar :: () -> float {
|
||||
return 1235.0 * 500;
|
||||
}
|
||||
|
||||
vertex main :: () {
|
||||
x : int = foo();
|
||||
y : float = bar();
|
||||
}
|
||||
Reference in New Issue
Block a user