Browse Source

formating

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

10
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,11 +23,13 @@ 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
0000 0000 1700 0000 9600 0000 ff00 0000 ................ 0000 0000 1700 0000 9600 0000 ff00 0000 ................
0c00 0000 1000 0000 1500 0000 2a00 0000 ............*... 0c00 0000 1000 0000 1500 0000 2a00 0000 ............*...
0000 0000 0000 0000 ........ 0000 0000 0000 0000 ........
student@ubuntu:~/piscine/test$ student@ubuntu:~/piscine/test$
``` ```
Loading…
Cancel
Save