vtest: remove `pub` before main
parent
3e324befd0
commit
fe249ab0c3
|
@ -1,12 +1,10 @@
|
||||||
module main
|
module main
|
||||||
|
|
||||||
import (
|
import os
|
||||||
os
|
import os.cmdline
|
||||||
os.cmdline
|
import testing
|
||||||
testing
|
|
||||||
)
|
|
||||||
|
|
||||||
pub fn main() {
|
fn main() {
|
||||||
args := os.args
|
args := os.args
|
||||||
if args.last() == 'test' {
|
if args.last() == 'test' {
|
||||||
println('Usage:')
|
println('Usage:')
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// import mysql
|
// import mysql
|
||||||
|
|
||||||
// pub fn main() {
|
// fn main() {
|
||||||
// conn := mysql.connect('localhost', 'root', '', 'mysql')
|
// conn := mysql.connect('localhost', 'root', '', 'mysql')
|
||||||
// res := conn.query('show tables')
|
// res := conn.query('show tables')
|
||||||
// for row in res.rows() {
|
// for row in res.rows() {
|
||||||
|
|
|
@ -36,6 +36,6 @@ pub fn callback(req picohttpparser.Request, res mut picohttpparser.Response) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn main() {
|
fn main() {
|
||||||
picoev.new(8088, &callback).serve()
|
picoev.new(8088, &callback).serve()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue