Skip to content
Snippets Groups Projects
Select Git revision
  • f6adeba43de63fc52bc61fb85fbd1ae20689f6ab
  • main default protected
  • tuxcoder_dome
  • tuxcoder_fix_captouch
  • crates-reorga
  • wifi
  • test-badgenet
7 results

imu.rs

Blame
  • Forked from flow3r / flow3-rs
    Source project has a limited visibility.
    is-isnot.py NaN GiB
    print(1 is 1)
    print(1 is 2)
    print(1 is not 1)
    print(1 is not 2)
    
    
    print([1, 2] is [1, 2])
    a = [1, 2]
    b = a
    print(b is a)
    
    # TODO: strings require special "is" handling, postponed
    # until qstr refactor.
    #print("a" is "a")