docs: Add readme for ascii subject

This commit is contained in:
estlop 2022-06-23 13:10:38 +01:00 committed by eslopfer
parent fcc042a38e
commit f5679a6ca6
1 changed files with 38 additions and 0 deletions

38
subjects/ascii/README.md Normal file
View File

@ -0,0 +1,38 @@
## ascii
### Instructions
Write a function that receives a string and returns a slice with the ASCII values of its characters.
### Expected function
```go
func Ascii(str string) []byte {
}
```
### Usage
Here is a possible program to test your function:
```go
package main
import (
"piscine"
"fmt"
)
func main() {
l := piscine.Ascii("Hello")
fmt.Println(l)
}
```
And its output:
```console
$ go run .
[104 101 108 108 111]
```