Skip to content

Instantly share code, notes, and snippets.

@deathbeam
Last active February 11, 2025 00:31
from Sys import print
interface Greeter
function greet(name)
print "Hello #name"
end
end
class Person
include Greeter
end
Person!greet "Alice"
# vim: set ft=rb:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment