7 lines
152 B
Plaintext
Raw Normal View History

2019-08-21 10:28:27 +02:00
function foobar(const i : int) : int is
block {
const j : int = 3 ;
function toto(const k : int) : int is
i + j + k ;
} with toto(42)