build.Do: verbose

This commit is contained in:
xushiwei
2024-04-24 14:27:14 +08:00
parent 1567989142
commit 81b3add443
4 changed files with 24 additions and 6 deletions

View File

@@ -8,3 +8,10 @@ const (
//go:linkname Printf printf
func Printf(format *int8, __llgo_va_list ...any)
func Max(a, b int) int {
if a > b {
return a
}
return b
}