mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
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
|
|
|