maraigue (owner)

Revisions

gist: 108901 Download_button fork
public
Description:
うっうー!
Public Clone URL: git://gist.github.com/108901.git
Embed All Files: show embed
yayoi.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby1.9
# -*- coding: utf-8 -*-
 
# 要 Ruby1.9
 
class Yayoi
  def *(other); self; end
  def <(other); puts other; false; end
end
ζ = Yayoi.new
’ヮ’)ζ = Yayoi.new
 
 
ζ*’ヮ’)ζ < "うっうー"