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

conf.py

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