Skip to content

Commit 0e7b6bc

Browse files
committed
test github page
1 parent 052c421 commit 0e7b6bc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Programming/Go/go_basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ func main() {
992992
arr[0][0]=1 arr[0][1]=2 arr[0][2]=3
993993
arr[1][0]=4 arr[1][1]=5 arr[1][2]=6
994994
*/
995-
arr := [2][3]int{{1, 2, 3}, {4, 5, 6}}
995+
arr := [2][3]int{ {1, 2, 3}, {4, 5, 6} }
996996
for i, v := range arr {
997997
for j, v2 := range v {
998998
fmt.Printf("arr[%v][%v]=%v ", i, j, v2)

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Hello
22

33
This projects is for sharing my notes on learning about cs, math and programming.
4-

0 commit comments

Comments
 (0)