Skip to content

Commit

Permalink
Fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelS11 committed May 31, 2018
1 parent d5871cb commit 2a00793
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ if x < 1 || y < 1 {
println(x + y)
}
// Array
// array
a = [1, 2, 3]
println(a) // [1 2 3]
println(a[0]) // 1
// Map
// map
a = {"x": 1}
println(a) // map[x:1]
a.b = 2
Expand Down
4 changes: 2 additions & 2 deletions vm/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,12 @@ if x < 1 || y < 1 {
println(x + y)
}
// Array
// array
a = [1, 2, 3]
println(a) // [1 2 3]
println(a[0]) // 1
// Map
// map
a = {"x": 1}
println(a) // map[x:1]
a.b = 2
Expand Down

0 comments on commit 2a00793

Please sign in to comment.