blob: 89ef0a9759bfed5e0db2a41f13f57fba729696d3 [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() {
time.Sleep(10 * time.Second)
fmt.Println("hello!!")
}