You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
102 B

3 years ago
  1. (defun b (&optional x)
  2. (pinmode 13 :output)
  3. (digitalwrite 13 x)
  4. (delay 1000)
  5. (b (not x)))
  6. (b)