outrun/outrun-core/lib/any.outrun

10 lines
203 B
Text

use String
```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