blob: 093194d72062fa33535186402a231ef4c805581a [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"time"
)
func main() {
fmt.Printf("NOW: %s\n", time.Now())
time.Sleep(10 * time.Second)
fmt.Println("hello!!")
}