Update 3.PikaScript标准开发流程.md

This commit is contained in:
Lyon 2021-08-27 19:04:45 +08:00 committed by GitHub
parent fb2827a8d0
commit 871cc65216

View File

@ -165,9 +165,9 @@ def set(argPath: str, val: any):
``` python
# Math.py
class Adder:
byInt(a:int,b:int)->int:
byInt(a:int, b:int)->int:
pass
byFloat(a:float,b:float)->float:
byFloat(a:float, b:float)->float:
pass
```
@ -178,8 +178,8 @@ class Adder:
``` python
# Math.py
class Multiplier:
byInt(a:int,b:int)->int:
byInt(a:int, b:int)->int:
pass
byFloat(a:float,b:float)->float:
byFloat(a:float, b:float)->float:
pass
```