#!/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 ζ*’ヮ’)ζ < "うっうー"