tomo-koans/lesson-templates/lesson-10-structs.tm

43 lines
885 B
Plaintext
Raw Normal View History

2025-03-24 19:16:58 -07:00
# Structs and Methods
# The keyword `struct` is used to define structures
# that hold multiple members:
struct Point(x:Int, y:Int):
# Methods are any function defined inside of the
# indented area below a struct definition.
# There is no implicit `self` argument, only the
# arguments you explicitly define.
2025-03-24 23:25:54 -07:00
func abs(p:Point -> Point):
2025-03-24 19:16:58 -07:00
return Point(p.x:abs(), p.y:abs())
# Constants can be declared inside of a struct's namespace:
ZERO := Point(0, 0)
# Arbitrary functions can also be defined here:
func squared_int(x:Int -> Int):
return x * x
func main():
# You can create a struct instance like this:
2025-03-24 23:25:54 -07:00
p := Point(x=3, y=-4)
2025-03-24 19:16:58 -07:00
>> p
= Point(x=???, y=???)
>> Point.ZERO
= Point(x=???, y=???)
>> p.x
= ???
>> p.y
= ???
2025-03-24 23:25:54 -07:00
>> p:abs()
2025-03-24 19:16:58 -07:00
= ???
>> Point.squared_int(5)
= ???