New func returns pointer to input struct
(val string)
| 52 | |
| 53 | // New func returns pointer to input struct |
| 54 | func New(val string) StringManipulation { |
| 55 | return &input{Input: val} |
| 56 | } |
| 57 | |
| 58 | // Acronym func returns acronym of input string. |
| 59 | // You can chain to upper which with make result all upercase or ToLower |
no outgoing calls