forked from Rust-related/RustPython
16 lines
129 B
Python
16 lines
129 B
Python
|
|
|
|
# Comparison operations:
|
|
|
|
def eq(a, b):
|
|
return a == b
|
|
|
|
|
|
def ne(a, b):
|
|
return a != b
|
|
|
|
|
|
def ge(a, b):
|
|
return a >= b
|
|
|