Files
highground-fork/tests/struct.sols

16 lines
263 B
Plaintext
Raw Normal View History

2026-04-11 17:05:20 +10:00
struct Person {
name = ""
age = 0
def greet() string {
return "Hello, " + self.name + "!"
}
2026-04-11 17:05:20 +10:00
constructor(string name, int age) {
self.name = name
self.age = age
}
2026-01-25 17:40:07 +11:00
}
2026-04-11 17:05:20 +10:00
max = Person("Max", 16)
puts max
puts max.greet()