faltando so variaveis de condicao
[3hU9fRjo95.git] / hello.go~
blobeb9da5a1b40360c71bd0bd650bfa15125a4c1dbe
1 /* hello */
3 package main // executável principal sempre deve pertencer a este pacote
5 import . "fmt" // importa funções de saída formatada (Printf)
7 // função principal (como em C)
8 func main() {
9         //sem o . no import teríamos que utilizar fmt.Printf
10         Printf("hello, world\n")