// oneline comment
/*
multiline
comment
*/
void setup() {
pinMode(0, OUTPUT); // set up pin number 0 to be output
digitalWrite(0, HIGH); // put pin 0 to high (5V in this case)
}
void loop() {
// not need yet
}
// oneline comment
/*
multiline
comment
*/
void setup() {
pinMode(0, OUTPUT); // set up pin number 0 to be output
digitalWrite(0, HIGH); // put pin 0 to high (5V in this case)
}
void loop() {
// not need yet
}