File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55* [ Numbers] ( numbers/README.md )
66 * [ Creation] ( numbers/create.md )
77 * [ Basic Operators] ( numbers/operators.md )
8- * [ Strings] ( strings/README.md )
9- * [ Creation] ( strings/create.md )
10- * [ Concatenation] ( strings/concat.md )
11- * [ Splitting] ( strings/split.md )
128
Original file line number Diff line number Diff line change 11# Operators
22
3- You can apply operations to numbers using some basic operators like:
3+ You can apply mathematic operations to numbers using some basic operators like:
44
55* ** Addition** : ``` c = a + b ```
66* ** Subtraction** : ``` c = a - b ```
77* ** Multiplication** : ``` c = a * b ```
88* ** Division** : ``` c = a / b ```
99
10- You can use parentheses just like in math to separate calcul execution.
10+ You can use parentheses just like in math to separate calcul execution: ``` c = (a / b) + d ```
1111
1212
1313---
You can’t perform that action at this time.
0 commit comments