Liked https://fosstodon.org/@ovid/109312685721034390 by Curtis Curtis "Ovid" Poe (fosstodon.org)
Haven't touched #Perl in a while? Modern Perl might surprise you and I'm super-excited that my #Corinna #OOP proposal has been accepted. Here's a simple 2D point class in the new syntax: class Point { field ($x,$y) :param :reader; method invert() { ($x,$y) = ($y,$x) } } For serious OOP fans: it incl...