LoginSignup
0
0

More than 5 years have passed since last update.

わーい、すごーい

Last updated at Posted at 2017-02-10

なんか気付いたら手元にソースがあったので、ここに供養します。

#!/bin/env groovy

def message = ""

def wai = {message += "わーい\n"}
def sugoi = {message += "すごーい\n"}
def tanoshii = {message += "たのしー\n"}
def friends = {message += "君は${it}がとくいな、フレンズなんだね!\n"}

wai()
sugoi()
tanoshii()
friends "Groovy"
println message

元ネタ:http://qiita.com/t_ishida/items/bae7e62950d81f427f13

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0