https://github.com/brys0/brys0
Readme uwu
https://github.com/brys0/brys0
Last synced: over 1 year ago
JSON representation
Readme uwu
- Host: GitHub
- URL: https://github.com/brys0/brys0
- Owner: brys0
- Created: 2020-11-20T14:03:09.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-26T20:12:44.000Z (over 1 year ago)
- Last Synced: 2025-02-14T12:53:28.417Z (over 1 year ago)
- Language: Kotlin
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Greetings programmers 🖥️
## Projects 🏗️
- [Shadfin](https://github.com/shadfin) An alternative frontend for Jellyfin Media Server.
## My Statistics
[](https://github.com/brys0/github-readme-stats)
## About Me
```kotlin
import java.lang.StringBuilder
fun main() {
val brys = User(name = "Brys", age = 19, occupation = "Developer", nerd = true)
val user = StringBuilder()
user.append("Name: ${brys.name}\n")
user.append("Age: ${brys.age}\n")
user.append("Occupation: ${brys.occupation}\n")
user.append("Nerd: ${brys.nerd}")
println(user)
}
data class User(val name: String, val age: Int, val occupation: String, val nerd: Boolean)
```
```log
Name: Brys
Age: 19
Occupation: Developer
Nerd: true
```