Created
March 7, 2023 16:07
-
-
Save ShellWen/98d5faf79d6d2f75d2156089ec989e77 to your computer and use it in GitHub Desktop.
ShellWen.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```kotlin | |
| /** | |
| * This "object" is still learning | |
| */ | |
| object ShellWen : Coder( | |
| name = "颉文", | |
| languages = listOf( | |
| "Kotlin", | |
| "Java", | |
| "Python", | |
| "TypeScript" | |
| ) | |
| ), Student { | |
| override fun live() { | |
| while (true) { | |
| learning() | |
| } | |
| } | |
| } | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment