Skip to content

Instantly share code, notes, and snippets.

@aya-eiya
Created June 4, 2014 10:43
Show Gist options
  • Save aya-eiya/cbfeb6b782dfa4ecd120 to your computer and use it in GitHub Desktop.
Save aya-eiya/cbfeb6b782dfa4ecd120 to your computer and use it in GitHub Desktop.
Groovyのちょっとしたこと「try{return func1()}finally{return func2()}の挙動」 ref: http://qiita.com/aya_eiya/items/95cd1b20cd36d8e43b88
def func = {
try{
return {print('a');0}()
}finally{
return {print('b');1}()
}
}
println func() // ab1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment