7 lines
116 B
V
7 lines
116 B
V
// myfile.v
|
|
module mymodule
|
|
|
|
// Use "pub" to export a function
|
|
pub fn say_hi() {
|
|
println("hello from mymodule!")
|
|
}
|