Content deleted Content added
Tags: Twinkle Undo Mobile edit Mobile web edit Advanced mobile edit |
DarthKitty (talk | contribs) m →Range as a data type: fix syntax highlighting |
||
Line 36:
Example in [[Kotlin (programming language)|Kotlin]].
<syntaxhighlight lang="
data class Range<T: Comparable<T>>(val start: T, val end: T)
</syntaxhighlight>
|