core: Formatting
This commit is contained in:
parent
6d4fb35912
commit
035197609a
1 changed files with 1 additions and 1 deletions
|
|
@ -10,8 +10,8 @@ pure fn add(x: uint, y: uint) -> uint { ret x + y; }
|
|||
pure fn sub(x: uint, y: uint) -> uint { ret x - y; }
|
||||
pure fn mul(x: uint, y: uint) -> uint { ret x * y; }
|
||||
pure fn div(x: uint, y: uint) -> uint { ret x / y; }
|
||||
|
||||
pure fn rem(x: uint, y: uint) -> uint { ret x % y; }
|
||||
|
||||
pure fn lt(x: uint, y: uint) -> bool { ret x < y; }
|
||||
pure fn le(x: uint, y: uint) -> bool { ret x <= y; }
|
||||
pure fn eq(x: uint, y: uint) -> bool { ret x == y; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue