R variables



examples/basics/variables.R
width = 8
height = 3

area_of_recangle = height * width

print(area_of_recangle)  # 24