6 lines
111 B
Plaintext
6 lines
111 B
Plaintext
// This is a comment line
|
|
fn my-function() -> bool {
|
|
// This function always returns false
|
|
return false;
|
|
}
|