diff --git a/docs/en/references/syntax.md b/docs/en/references/syntax.md index 7975d1d..643d5e3 100644 --- a/docs/en/references/syntax.md +++ b/docs/en/references/syntax.md @@ -324,24 +324,26 @@ See the table below for which functions they are replaced with. ### List of Operators The higher the precedence, the higher it is in the table. (Some have the same precedence) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +
OperatorCorresponding FunctionMeaning
^Core:powExponentiation
+ (unary)NonePositive
- (unary)NoneNegative
! (unary)NoneNegation
*Core:mulMultiplication
/Core:divDivision
%Core:modModulus
+Core:addAddition
-Core:subSubtraction
>Core:gtGreater than
>=Core:gteqGreater than or equal to
<Core:ltLess than
<=Core:lteqLess than or equal to
==Core:eqEqual to
!=Core:neqNot equal to
&&Core:andAnd
||Core:orOr
OperatorCorresponding FunctionMeaning
^Core:powExponentiation
+ (unary)NonePositive
- (unary)NoneNegative
! (unary)NoneNegation
*Core:mulMultiplication
/Core:divDivision
%Core:modModulus
+Core:addAddition
-Core:subSubtraction
>Core:gtGreater than
>=Core:gteqGreater than or equal to
<Core:ltLess than
<=Core:lteqLess than or equal to
==Core:eqEqual to
!=Core:neqNot equal to
&&Core:andAnd
||Core:orOr
### if diff --git a/docs/ja/references/syntax.md b/docs/ja/references/syntax.md index e6ffdc2..8a0c1b6 100644 --- a/docs/ja/references/syntax.md +++ b/docs/ja/references/syntax.md @@ -324,24 +324,26 @@ Ai:kun() // kawaii ### 演算子一覧 上から順に優先度が高くなっています。(一部優先度が同じものもあります) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +
演算子対応する関数意味
^Core:pow冪算
+(単項)なし正数
-(単項)なし負数
!(単項)なし否定
*Core:mul乗算
/Core:div除算
%Core:mod剰余
+Core:add加算
-Core:sub減算
>Core:gt大きい
>=Core:gteq以上
<Core:lt小さい
<=Core:lteq以下
==Core:eq等しい
!=Core:neq等しくない
&&Core:andかつ
||Core:orまたは
演算子対応する関数意味
^Core:pow冪算
+(単項)なし正数
-(単項)なし負数
!(単項)なし否定
*Core:mul乗算
/Core:div除算
%Core:mod剰余
+Core:add加算
-Core:sub減算
>Core:gt大きい
>=Core:gteq以上
<Core:lt小さい
<=Core:lteq以下
==Core:eq等しい
!=Core:neq等しくない
&&Core:andかつ
||Core:orまたは
### if