mirror of
https://github.com/bearlanguageorg/bear.git
synced 2026-08-26 14:17:18 +00:00
10 lines
115 B
Plaintext
10 lines
115 B
Plaintext
// debug: does the function work at all?
|
|
|
|
fn double(x) {
|
|
return x * 2
|
|
}
|
|
|
|
fn main() {
|
|
println(double(21))
|
|
}
|