13 lines
139 B
Plaintext
13 lines
139 B
Plaintext
foo :: () -> int {
|
|
return 5;
|
|
}
|
|
|
|
bar :: () -> float {
|
|
return 1235.0 * 500;
|
|
}
|
|
|
|
vertex main :: () {
|
|
x : int = foo();
|
|
y : float = bar();
|
|
}
|