Ver Código Fonte

just use one import statement.

might me what most people do?
Lucas Stadler 11 anos atrás
pai
commit
4f8563617f
1 arquivos alterados com 13 adições e 11 exclusões
  1. 13 11
      go/qst.go

+ 13 - 11
go/qst.go

@ -1,16 +1,18 @@
1 1
package main
2 2
3
import "errors"
4
import "flag"
5
import "fmt"
6
import "log"
7
import "os"
8
import "os/exec"
9
import "os/signal"
10
import "path"
11
import "strings"
12
import "syscall"
13
import "time"
3
import (
4
	"errors"
5
	"flag"
6
	"fmt"
7
	"log"
8
	"os"
9
	"os/exec"
10
	"os/signal"
11
	"path"
12
	"strings"
13
	"syscall"
14
	"time"
15
)
14 16
15 17
/*
16 18