The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# Copyright (c) 2024 Yuki Kimoto
# MIT License
class Comparable : interface_t {
version_from SPVM;
# Interface Methods
required method cmp : int ($a : object, $b : object);
}