{"body":"class Person {\n    has Str $.name;\n    has Int $.age;\n\n    method cmp(Person $other) {\n        return $.age cmp $other.age;  # Compare by age\n    }\n}\n\nmy @people = (\n    Person.new(name => \"Alice\", age => 30),\n    Person.new(name => \"Bob\", age => 25),\n    Person.new(name => \"Charlie\", age => 35)\n);\n\nsay @people.sort;  # Sorts based on age\n","name":"","extension":"txt","url":"https://www.irccloud.com/pastebin/XYmjLZzu","modified":1739228096,"id":"XYmjLZzu","size":341,"lines":16,"own_paste":false,"theme":"","date":1739228096}