Created
August 18, 2017 20:18
-
-
Save mikebroberts/acf2a6fcbee468b8beb7137ae87ddb40 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 MyLambda { | |
public String handler(String input) { | |
String message = String.format("Hello, %s!", input); | |
System.out.println("Logging: message"); | |
return message; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment