반응형
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- Google Excel
- Apache
- dataframe
- PostgreSQL
- SQL
- Github
- Presto
- Java
- GIT
- Python
- list
- Excel
- math
- Tkinter
- array
- Google Spreadsheet
- django
- string
- gas
- Redshift
- 파이썬
- c#
- PySpark
- hive
- google apps script
- matplotlib
- numpy
- PANDAS
- Kotlin
Archives
- Today
- Total
목록Functions (1)
달나라 노트
Kotlin - Functions
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin에서 Function을 어떻게 만들고 사용하는지 봅시다. fun fun_name(parameter1: data_type1, parameter2: data_type1, ...): return_type { contents... return ... } 기본적으로 Kotlin에서의 function은 위처럼 만들 수 있습니다. fun = function 선언의 의미 fun_name = 함수 이름 parameter1 = 첫 번째 parameter 이름 data_type1 = parameter1의 data type parameter2 = 두 번째 parameter..
Kotlin
2021. 3. 15. 01:09