clear old record

This commit is contained in:
lostecho
2024-06-17 22:24:52 +08:00
commit bd8d6c1b6d
698 changed files with 23061 additions and 0 deletions

14
journals/2023_08_25.md Normal file
View File

@@ -0,0 +1,14 @@
- Hello World #go
- ```go
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
```
- run program
- `go build hello.go`
- `go run hello.go`
-