int ledPin = 13;  // LED connected to digital pin 13
int inPin = 7;    // pushbutton connected to digital pin 7
int val;      // variable to store the read value// put your setup code here, to run once:

void setup() {
  
  pinMode(ledPin, OUTPUT);  // sets the digital pin 13 as output
  pinMode(inPin, INPUT);    // sets the digital pin 7 as input
  
}

void loop() {
 if( val = digitalRead((inPin)==HIGH));   // read the input pin
  {digitalWrite(ledPin, HIGH); } // sets the LED to the button's value// put your main code here, to run repeatedly:

}