Different data types can do different things. Some primitive data types include:

//integer
let x: int = 4

//string
let y: string = "Hello, World!"

//float
let z: float = 0.3

Heck is statically-typed, so data types cannot be changed:

let x = ""

x = 2