ethos/tests/fn_void.ethlang
2026-03-10 23:21:42 +01:00

13 lines
125 B
Plaintext

fn my_implicit_void() {}
fn my_explicit_void() -> void {}
fn main()
{
my_implicit_void();
my_explicit_void();
}