Create a variable called:
buttonState
This variable stores whether the button is pressed or not.
When Arduino Starts Up
Forever
set buttonState to read digital pin 2
if buttonState = LOW then
set pin 13 HIGH
else
set pin 13 LOW
Cart