Fix the case of int in the 2.2 section of docs/gettingstarted.md
This commit is contained in:
parent
cfbebed895
commit
856e715e29
|
@ -40,7 +40,7 @@ addIntToString (int, String) => { a, b;
|
||||||
|
|
||||||
Named functions can have parameters **(with mandatory names)** like in this example:
|
Named functions can have parameters **(with mandatory names)** like in this example:
|
||||||
```
|
```
|
||||||
addIntToString(a: Int, b: String) => {
|
addIntToString(a: int, b: String) => {
|
||||||
print_line(b + a)
|
print_line(b + a)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue