outrun/outrun-core/lib/any.outrun

8 lines
191 B
Text

```doc
# Any
Defines a special protocol which applies to all Outrun types. Usually used in
place of a generic type argument.
```
protocol Any, as: do
def type_name(self: Self): String
end