ethos/tests/fn_void.ethlang
sfja 086bea3e89
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 46s
add vim line to tests
2026-04-13 09:39:58 +02:00

14 lines
166 B
Rust

fn my_implicit_void() {}
fn my_explicit_void() -> void {}
fn main()
{
my_implicit_void();
my_explicit_void();
}
// vim: syntax=rust commentstring=//\ %s