Skip to content

Instantly share code, notes, and snippets.

@mikebroberts
Created August 18, 2017 20:18
Show Gist options
  • Save mikebroberts/acf2a6fcbee468b8beb7137ae87ddb40 to your computer and use it in GitHub Desktop.
Save mikebroberts/acf2a6fcbee468b8beb7137ae87ddb40 to your computer and use it in GitHub Desktop.
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