Browse Source

formating

pull/108/head
Christopher Fremond 5 years ago committed by Frenchris
parent
commit
8d8fe5fdfc
  1. 8
      subjects/printmemory.en.md

8
subjects/printmemory.en.md

@ -4,7 +4,7 @@
Write a function that takes `(arr [10]int, size int)`, and displays the memory as in the example. Write a function that takes `(arr [10]int, size int)`, and displays the memory as in the example.
Your function must be declared as follows : ### Expected function
```go ```go
func PrintMemory(arr [10]int, size int) { func PrintMemory(arr [10]int, size int) {
@ -12,9 +12,9 @@ func PrintMemory(arr [10]int, size int) {
} }
``` ```
### Usege ### Usage
Here is a possible program to test your function and it's output : Here is a possible program to test your function :
```go ```go
func main() { func main() {
@ -23,6 +23,8 @@ func main() {
} }
``` ```
And its output :
```console ```console
student@ubuntu:~/piscine/test$ go build student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test student@ubuntu:~/piscine/test$ ./test

Loading…
Cancel
Save