expected ')', found ','
14:10 23 May 2026

I am currently trying to make a global variable for my game in golang, but when I input the code to do so it gives me "expected ')', found ','" every time.

var Playerpos int32 = (400, 225)

I've tried to delete the ", 225)" and I do not get the error, how do I fix this?

go game-development raylib