Like this? ``` fun runThis() { val some = object ...
# getting-started
f
Like this?
Copy code
fun runThis() {
	val some = object {
		val x = 0
		val y = 0
	}
	
	print(some.x + some.y)
}