Files
fn-serverless/test/fn-api-tests/fn/multi-log/main.go
2017-07-21 20:03:43 +03:00

15 lines
202 B
Go

package main
import (
"fmt"
"os"
"time"
)
func main() {
fmt.Fprintln(os.Stderr, "First line")
fmt.Fprintln(os.Stdout, "Ok")
time.Sleep(3 * time.Second)
fmt.Fprintln(os.Stderr, "Second line")
}