File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/en/quickstart/02base Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ lastUpdated: true
4
4
5
5
# Variable
6
6
7
- ## Declaration of variables
7
+ ## Defination of variables
8
8
9
- Same as other languages, you can declare some variables in MCFPP for store, transfer and process data.
9
+ Same as other languages, you can define some variables in MCFPP for store, transfer and process data.
10
10
11
- The declaration of data is like this:
11
+ The defination of data is like this:
12
12
13
13
``` mcfpp
14
14
#Type of data Identifier of data (optional: = expression or value )
15
15
int i = 5;
16
16
int b = i * 6;
17
17
```
18
18
19
- The identifier of variable can be the combination of any characters and numbers. In one scope, a name of variable only can declared once.
19
+ The identifier of variable can be the combination of any characters and numbers. In one scope, a name of variable only can defined once.
20
20
21
21
## Type of variable
22
22
You can’t perform that action at this time.
0 commit comments