Created
October 3, 2011 11:04
-
-
Save pasberth/1258896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| module Kernel | |
| def method_missing funcname, *args, &blk | |
| if funcname =~ /\A画面に「(.*)」と表示してくださいですわ\z/ | |
| puts $1 | |
| else | |
| super | |
| end | |
| end | |
| end | |
| 画面に「キャビアァァァァァビィ~~~~ム!!!!!!」と表示してくださいですわ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment