Skip to content

Commit

Permalink
test github page
Browse files Browse the repository at this point in the history
  • Loading branch information
lilhammer111 committed May 11, 2024
1 parent 052c421 commit 0e7b6bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Programming/Go/go_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ func main() {
arr[0][0]=1 arr[0][1]=2 arr[0][2]=3
arr[1][0]=4 arr[1][1]=5 arr[1][2]=6
*/
arr := [2][3]int{{1, 2, 3}, {4, 5, 6}}
arr := [2][3]int{ {1, 2, 3}, {4, 5, 6} }
for i, v := range arr {
for j, v2 := range v {
fmt.Printf("arr[%v][%v]=%v ", i, j, v2)
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Hello

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

0 comments on commit 0e7b6bc

Please sign in to comment.