Type Challenges Judge
Problems
Progress
Ranking
Trim Left
Implement TrimLeft<T> which takes an exact string type and returns a new string with the whitespace beginning removed.
TrimLeft<T>
For example
type trimed = TrimLeft<' Hello World '> // expected to be 'Hello World '