Function application is prefix, so age person would correspond to the person.age() common in OOP languages. The print_age function could be defined pointfree by function composition
print_age = print . age
or point-full
print_age person = print (age person)