Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 599 Bytes

File metadata and controls

46 lines (35 loc) · 599 Bytes

Variables

Write a string (This can be any combination of letters).

Hello 

Then add a space and an equal sign.

Hello = 

If you want an integer, add a space and put a number.

Hello = 1

If you want the integer go up by a number, add a plus before the equals.

Hello += 1

If you want a string, put the string in between a pair of quotation marks.

Hello = "Variable"

Examples

Example 1:

dollars = 100

Example 2:

dollars = "none"

Example 3:

dollars = 1
dollars += 1