Skip to content
Snippets Groups Projects
Select Git revision
  • ca59f5f208f17620a0ac2fc77e3026bed0d9fe2c
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

flashbdev.py

Blame
  • list_clear.py 55 B
    # tests list.clear
    x = [1, 2, 3, 4]
    x.clear()
    print(x)