Click for pointers to get started!
Its all really quite simple. To start, try a basic arithmetic statement like:
>> 3+2
5
>>
So, the shell will automatically print out the value of the statement to be evaluated. What about if we use a variable?
>> testVar = 3+2
>>
Hmmm, no output. Did the value go into our variable? go ahead and check!
>> testVar
5
>>
Great! And now we can use our variable in other statements just like any other number. Getting the hang of it? Good!
Note: typing 'clear' clears shell and all variables.