13 lines
125 B
Plaintext
13 lines
125 B
Plaintext
|
|
fn my_implicit_void() {}
|
|
|
|
fn my_explicit_void() -> void {}
|
|
|
|
fn main()
|
|
{
|
|
my_implicit_void();
|
|
my_explicit_void();
|
|
}
|
|
|
|
|