I'm not sure how to make buttons myself in Turing as I am still in Gr.10, which is year 1 programming. However, for this problem:
Quote:
if you look at it when the user is prompt to give and answer it has to be exactly right
for example if the user wants Power then they have to type Power not power
You can change that by adding an 'or' to the if statement. For example
code: |
get (input)
if (input) = "Power" or (input) = "power" then (perform action)
|
Now the user can input "Power" or "power" to perform the next action.