1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vtest: remove pub before main

This commit is contained in:
Enzo Baldisserri
2020-04-17 21:41:54 +02:00
committed by GitHub
parent 3e324befd0
commit fe249ab0c3
3 changed files with 6 additions and 8 deletions

View File

@ -1,6 +1,6 @@
// import mysql
// pub fn main() {
// fn main() {
// conn := mysql.connect('localhost', 'root', '', 'mysql')
// res := conn.query('show tables')
// for row in res.rows() {