v/cmd/tools/vcreate/project_model_bin.v

13 lines
226 B
V

module main
fn (mut c Create) set_bin_project_files(new bool) {
c.files << ProjectFiles{
path: if new { '${c.name}/src/main.v' } else { 'src/main.v' }
content: "module main
fn main() {
println('Hello World!')
}
"
}
}