Skip to content

Instantly share code, notes, and snippets.

@deathbeam
Created November 2, 2015 10:58
Show Gist options
  • Save deathbeam/da09649f375ca4c4b1bc to your computer and use it in GitHub Desktop.
Save deathbeam/da09649f375ca4c4b1bc to your computer and use it in GitHub Desktop.
Static constructors in Raxe
# vim: set ft=rb:
class @
def @new()
trace("Hello ")
end
def @main()
trace("World")
end
end
# Output to console:
# > Hello World
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment