What would happen if you attempted to compile and run this Go program?gopackage mainvar GlobalFlag stringfunc main() { print('['+GlobalFlag+']')}

🎲 Try a Random Question  |  Total Questions in Quiz: 42  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Go (Programming Language) Quiz — practice the complete quiz, review flashcards, or try a random question.

Go (Programming Language) MCQs For LinkedIn Skill Assessments.


What would happen if you attempted to compile and run this Go program?<br>go<br>package main<br>var GlobalFlag string<br>func main() {<br> print('['+GlobalFlag+']')<br>}<br>