mirror of https://github.com/01-edu/public.git
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.
37 lines
435 B
37 lines
435 B
2 years ago
|
## printstr
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
- Write a function that prints one by one the characters of a `string` on the screen.
|
||
|
|
||
|
### Expected function
|
||
|
|
||
|
```go
|
||
|
func PrintStr(s string) {
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Hints
|
||
|
|
||
|
Here is a possible program to test your function :
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
func main() {
|
||
|
PrintStr("Hello World!")
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
|
go run . | cat -e
|
||
|
Hello World!
|
||
|
```
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- [01-edu/z01](https://github.com/01-edu/z01)
|