Posted 2020-02-27Updated 2022-06-08 Jack Liu Go5 minutes read (About 811 words)Go:func 函数func 函数func函数(适用于method)小结Go函数数也是一种类型,可以和其他类型一样被保存在变量中。和接口一样,接口也是一种类型。12345678910111213package mainimport ( "fmt")func foo() { fmt.Println("foo")}func main() { var f func() f = foo f()}Read more
2023-08-13AI drawing ControlNet local implementation steps by stable-diffusion-webui(AI绘画ControlNet本地构建实施步骤 by stable-diffusion-webui)AI / painting / Controlnet / Drawing
2023-08-06Tribute to the great legendary philanthropist and programmer Bram Moolenaar, the original author and software maintainer of VIM(致敬伟大传奇的慈善家和程序员Bram Moolenaar,VIM最初作者和软件维护者)history-of-programing / daily