0 branches
Tree
Top files
Clone with HTTPS:
hello from readme
Example:
fn is_odd(x int) bool {
if x % 2 == 0 {
return false
}
return true
}
Another example:
fn answer() string {
return '42'
}