Course: Learning GO

A collection of go basic fundamentals, syntax and concepts.

Table of contents

Lesson: Numbers

Numbers

id := 4
price := 45.4

priceAsInt := int(price)
idAsFloat := float32(id)