Update readme.md

This commit is contained in:
Andrew Golovashevich 2024-11-09 11:30:46 +00:00
parent 600bc35ff7
commit 6199bd4651

View File

@ -1,16 +1,69 @@
#test
# test
```kts
// abc
kotlinScript {}
```
```kt
// short kotlin
class X
object Y: X {
fun someMethod() {
anotherCall()
}
}
topLevelCall {
lambdaCall()
}
```
```gradle
// gradle
class X
object Y: X {
fun someMethod() {
anotherCall()
}
}
topLevelCall {
lambdaCall()
}
```
```gradle.kts
// gradle.kts
class X
object Y: X {
fun someMethod() {
anotherCall()
}
}
topLevelCall {
lambdaCall()
}
```
```kotlin
// long kotlin
class X
object Y: X {
fun someMethod() {
anotherCall()
}
}
topLevelCall {
lambdaCall()
}
```
```c++