There is no straightforward translation to built-in functions for these, but we could do something like this: ```cs string.Join("", Enumerable.Repeat("foo", 10)) -> REPLICATE('foo', 10) ``` ```cs string.Join('', "foo".Reverse()) -> REVERSE('foo') ```
There is no straightforward translation to built-in functions for these, but we could do something like this: