Skip to content

Instantly share code, notes, and snippets.

@mikebroberts
Created March 14, 2017 15:31
Show Gist options
  • Save mikebroberts/0f169778b3f89e4c126d01c66d39b4e8 to your computer and use it in GitHub Desktop.
Save mikebroberts/0f169778b3f89e4c126d01c66d39b4e8 to your computer and use it in GitHub Desktop.
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