Hi John

Unless the variables a1, a2, a3, b1, ... are defined in the same package as 
your showBoard function, ie

var a1, a2, a3 int

then Go will report that they are undefined. Unlike some other languages, 
Go does not implicitly define a variable on first occurance. All variables 
must be defined before they are used either at the package level, as 
parameters to a function, or local variables.

If you are still stuck please try to provide a complete program, 
play.golang.org is good for this, that shows the problem you are having and 
provides a way for someone else to replicate it.

Thanks

Dave

On Monday, 3 September 2018 13:42:12 UTC+10, John wrote:
>
> I am currently making a program with variables, but when I tried to run it 
> says that the variables are not defined. So below are may code for using 
> the variable:
>
> func showBoard()  {
>      fmt.Println("  1 2 3")
>      fmt.Println("a", a1, a2, a3)
>      fmt.Println("b", b1, b2, b3)
>      fmt.Println("c", c1, c2, c3)
> }
> PS: I used the newest go version and the atom compiler
>
>                                                                           
>                                                                             
>    Sincerely
>                                                                           
>                                                                             
>              John
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to