打印机

This commit is contained in:
邹宗楠
2022-07-11 16:43:16 +08:00
parent 80c079db4e
commit ecdb628231
17 changed files with 64 additions and 61 deletions

View File

@@ -0,0 +1,15 @@
package print_server
import (
"fmt"
"sort"
"testing"
)
func Test_list(b *testing.T) {
//aa := []string{"app_key", "format", "jd_param_json", "timestamp", "token", "v"}
aa := []string{"format", "jd_param_json", "app_key", "timestamp", "token", "v"}
fmt.Println(aa)
sort.Strings(aa)
fmt.Println(aa)
}