Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to convert an integer into an integer64 in go but im having no luck. Anyone know an easy way to do this?

share|improve this question
2  
What have you tried? – Michael Foukarakis Oct 30 '12 at 10:49
If you showed your code sample why it does not work. It works for me. play.golang.org/p/63GWAs8XAq – Max Oct 30 '12 at 10:50

1 Answer

up vote 9 down vote accepted

This is called type conversion :

i := 23
var i64 int64
i64 = int64(i)
share|improve this answer
This worked perfectly. Thanks! – AC3112 Oct 30 '12 at 10:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.