Created
October 20, 2009 22:28
-
-
Save miya2000/214685 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace Oppai | |
| { | |
| class Oppai | |
| { | |
| static void Main(string[] args) | |
| { | |
| Func<char, Action<char>> _ = (l) => (r) => Console.WriteLine( | |
| ( l == '・' && r == '・' ) ? "ハリのあるおっぱい" : | |
| ( l == '.' && r == '.' ) ? "垂れ気味のおっぱい" : | |
| ( l == '◎' && r == '◎' ) ? "立体的なおっぱい" : | |
| ( l == '○' && r == '○' ) ? "乳輪が大きいおっぱい" : | |
| ( l == '●' && r == '●' ) ? "乳輪が大きく、黒いおっぱい" : | |
| ( l == '。' && r == '。' ) ? "色が薄く、左向きのおっぱい" : | |
| "引数には乳首しか受け入れません" | |
| ); | |
| _('.')('.'); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment