12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
class Person {}
|
|
|
|
fun greet(person) {
|
|
print("Hello " + person.firstname + " " + person.lastname)
|
|
}
|
|
|
|
let bob = Person()
|
|
bob.firstname = "Bob"
|
|
bob.lastname = "Builder"
|
|
|
|
greet(bob)
|