You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
estlop f5679a6ca6 docs: Add readme for ascii subject 2 years ago
..
README.md docs: Add readme for ascii subject 2 years ago

README.md

ascii

Instructions

Write a function that receives a string and returns a slice with the ASCII values of its characters.

Expected function

func Ascii(str string) []byte {

}

Usage

Here is a possible program to test your function:

package main

import (
    "piscine"
    "fmt"
)

func main() {
    l := piscine.Ascii("Hello")
    fmt.Println(l)
}

And its output:

$ go run .
[104 101 108 108 111]