Skip to content

Instantly share code, notes, and snippets.

View Yazazzello's full-sized avatar
🤔
Focusing

Yazazzello Yazazzello

🤔
Focusing
  • Netherlands, Noord-Holland
  • 14:09 (UTC -12:00)
View GitHub Profile
@dodyg
dodyg / gist:5616605
Last active November 21, 2022 03:05
Kotlin Programming Language Cheat Sheet Part 2

This is a quick guide to Kotlin programming language. The previous part of this guide is here

#Object Oriented

fun main(args : Array<String>) {
  class local (val x : Int)
  
  val y = local(10)
 println("${y.x}")