v/vlib/v/gen/js/tests/hello/hello.v

9 lines
112 B
V

module hello
pub fn standard() string {
return "Hello"
}
pub fn excited() string {
return standard() + "!"
}