본문 바로가기

공부기록

공부기록, 2021-04-22(목), 010일차

## 단축키
- Ctrl + Shift + f
  - 소스코드정리
## 코틀린
- ABC는 AB로 시작한다.
- "ABC" starts with "AB"
```
val command = "article delte 3"
when {
  "article list"
  command.startsWith("article delete") -> {
    //
  }
}
```