Files
Noja/examples/arrow.noja
T
2022-12-08 03:01:04 +01:00

13 lines
171 B
Plaintext

fun sayHello(self, other)
print("Hello ", other, " from ", self.name);
person = {
name: "Francesco",
sayHello: sayHello
};
person->sayHello("Giovanni");