Skip to content
Snippets Groups Projects
Select Git revision
  • master default
1 result

CLCBooksSQL.sql

Blame
  • Forked from Dr.Pirmann / CI101Week56Lab
    Source project has a limited visibility.
    demo.py NaN GiB
    
    import lect3
    
    a = lect3.Clock()
    b = lect3.Clock()
    
    a.setTime(10, 10)
    
    b.setTime(1, 7)
    
    print(b.getTime())
    
    left = 22
    right = 7
    
    print(left + right)
    
    print(a + b)