Created
March 14, 2017 15:31
-
-
Save mikebroberts/0f169778b3f89e4c126d01c66d39b4e8 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
package io.symphonia; | |
public class StringIntegerBooleanLambda { | |
public String handlerString(String s) { | |
return "Hello, " + s; | |
} | |
public int handlerInt(int input) { | |
return 100 + input; | |
} | |
public boolean handlerBoolean(boolean input) { | |
return !input; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment