Add Golang syntax highlighting to README docs (#317)

This commit is contained in:
Nir Magnezi 2022-11-16 17:05:41 +02:00 committed by GitHub
parent ad12a30dae
commit 672a1bc9e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 10 deletions

View File

@ -2330,7 +2330,7 @@ with <code>var x int = 2</code> we are setting the variable type to integer whil
<details>
<summary>下面代码块有什么问题? 怎么解决?
```
```go
func main() {
var x float32 = 13.5
var y int
@ -2343,7 +2343,7 @@ func main() {
<details>
<summary>下面的代码块尝试将整数101转换为字符串但相反我们得到“ e”。 这是为什么? 怎么解决?
```
```go
package main
import "fmt"
@ -2379,7 +2379,7 @@ func main() {
<details>
<summary>以下代码块的输出是什么?:
```
```go
package main
import "fmt"
@ -2406,7 +2406,7 @@ func main() {
<details>
<summary>以下代码块的输出是什么?:
```
```go
package main
import "fmt"

View File

@ -966,7 +966,8 @@ func main() {
<details>
<summary>The following block of code tries to convert the integer 101 to a string but instead we get "e". Why is that? How to fix it?
```
```go
package main
import "fmt"
@ -1007,7 +1008,7 @@ But `x`, `y` and their sum is variable.
<details>
<summary>What will be the output of the following block of code?:
```
```go
package main
import "fmt"
@ -1045,7 +1046,7 @@ It is called the [blank identifier](https://golang.org/doc/effective_go.html#bla
<details>
<summary>What will be the output of the following block of code?:
```
```go
package main
import "fmt"
@ -1067,7 +1068,7 @@ Since the first iota is declared with the value `3` (` + 3`), the next one has t
<details>
<summary>What will be the output of the following block of code?:
```
```go
package main
import (
@ -1106,7 +1107,7 @@ Output: 2 1 3
<details>
<summary>What will be the output of the following block of code?:
```
```go
package main
import (
@ -1160,7 +1161,7 @@ But in `mod2`, `append` creats new slice, and we're changing only `a` value, not
<details>
<summary>What will be the output of the following block of code?:
```
```go
package main
import (