library/demo: log

This commit is contained in:
xushiwei
2024-07-08 15:17:08 +08:00
parent 8db3ccce2e
commit 1d4cba9180
9 changed files with 268 additions and 79 deletions

View File

@@ -0,0 +1,9 @@
// Copyright 2009 The Go 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 runtime
func Caller(skip int) (pc uintptr, file string, line int, ok bool) {
panic("todo: runtime.Caller")
}