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.

23 lines
491 B

# getalpha
### Instructions
write a program that takes an integer [0-127] in parameter and returns the char that match the index of the integer in the ASCII table follwed by newline, follwed by newline.
- If the integer above 127 or less than 0 returns newline.
- If it's not a number returns newline.
- If tge number of arguments above 1 return newline.
### Usage
```go
$ go run . | cat -e
$
$ go run . "98" | cat -e
a
$ go run . "95" | cat -e
;
$ go run . "95" "102" | cat -e
$
```