Skip to content

Commit

Permalink
PT
Browse files Browse the repository at this point in the history
  • Loading branch information
CreamyCookie committed May 6, 2020
1 parent a553617 commit ff2ade9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions README-PT.md
Expand Up @@ -585,21 +585,15 @@ public enum Direction {
- Kotlin

```kotlin
enum class Direction constructor(direction: Int) {
enum class Direction(val direction: Int) {
NORTH(1),
SOUTH(2),
WEST(3),
EAST(4);

var direction: Int = 0
private set

init {
this.direction = direction
}
}
```


---

### Coisas importantes a saber em Kotlin
Expand Down

0 comments on commit ff2ade9

Please sign in to comment.