v_scratch/13_functions/init.v

9 lines
79 B
V

// init() can not be pub
fn init(){
println('oi')
}
pub fn main(){
init()
}