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' }