You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
funcmain() {
demo:="first"demo="second"// demo is assigned and not used before this assignmentdemo2:="hello"demo2, demo3:="third", 1// demo2 is assigned and not used before this assignment_, _, _=demo, demo2, demo3
}