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

12 lines
170 B
Plaintext

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