You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _moreReadMe/kotlin_basics/README.md
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,6 @@ We are going to spend a considerable time in discussing function because it has
226
226
- Optional parameter
227
227
- Positional argument and named argument
228
228
- Variable argument
229
-
- Single expression function
230
229
- Function type
231
230
- Function literals
232
231
- Callable references
@@ -265,7 +264,7 @@ fun italianGreeting() : String{
265
264
}
266
265
```
267
266
268
-
Idea behind **Lambda** syntax is that if you have a function and its only param is another param then you can omit the pranthesis altogether and you can pass that function in by specifying this open & clos parenthesis
267
+
Idea behind **Lambda** syntax is that if you have a function and its only param is another param then you can omit the pranthesis altogether and you can pass that function in by specifying this open & close parenthesis
269
268
270
269
271
270
**Higher order Functions** are fun that either return a fun or take fun as param
0 commit comments