blob: 3727f57f069f0c4731e6e983cb24e6e509a74e53 (
plain)
1
2
3
4
5
6
|
package sandbox
type F func(format string, v ...any)
func SwapPrint(f F) (old F) { old = printfFunc; printfFunc = f; return }
func SwapFatal(f F) (old F) { old = fatalfFunc; fatalfFunc = f; return }
|