In Ruby an array can hold a string or an integer, the same seems true in Javascript and python. But in Go, putting integers and strings together seems difficult, or at least i couldn't figure it out. Is an array able to take both integers and strings within Go in the same way that Python and Ruby can?
Ruby:
a = [20, "tim"]
puts a
Python:
a = [20, "tim"]
print(a)
Go:
?