mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
41 lines
864 B
Python
41 lines
864 B
Python
|
from PikaObj import *
|
||
|
|
||
|
class Operator(TinyObj):
|
||
|
def plusInt(num1: int, num2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def plusFloat(num1: float, num2: float) -> float:
|
||
|
pass
|
||
|
|
||
|
def minusInt(num1: int, num2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def minusFloat(num1: float, num2: float) -> float:
|
||
|
pass
|
||
|
|
||
|
def equalInt(num1: int, num2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def equalFloat(num1: float, num2: float) -> int:
|
||
|
pass
|
||
|
|
||
|
def graterThanInt(num1: int, num2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def graterThanFloat(num1: float, num2: float) -> int:
|
||
|
pass
|
||
|
|
||
|
def lessThanInt(num1: int, num2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def lessThanFloat(num1: float, num2: float) -> int:
|
||
|
pass
|
||
|
|
||
|
def AND(flag1: int, flag2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def OR(flag1: int, flag2: int) -> int:
|
||
|
pass
|
||
|
|
||
|
def NOT(flag: int) -> int:
|
||
|
pass
|