Files
fn-serverless/tool/examples/hello/hello.go
2016-07-17 21:24:50 -07:00

11 lines
104 B
Go

package main
import (
"fmt"
"os"
)
func main() {
fmt.Printf("Hello %v!\n", os.Getenv("PAYLOAD"))
}