gofmt.
This commit is contained in:
@@ -3,8 +3,8 @@ package main
|
||||
import (
|
||||
"exp/sql"
|
||||
"fmt"
|
||||
"os"
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
@@ -20,7 +20,7 @@ func main() {
|
||||
"create table foo (id integer not null primary key, name text)",
|
||||
"delete from foo",
|
||||
}
|
||||
for _, sql := range(sqls) {
|
||||
for _, sql := range sqls {
|
||||
_, err = db.Exec(sql)
|
||||
if err != nil {
|
||||
fmt.Printf("%q: %s\n", err, sql)
|
||||
|
||||
Reference in New Issue
Block a user