proc lfecho*[T](data: T) = echo '\L', data
Run
only works for a single parameter.
The following is the solution:
import strutils
proc lf2echo(data: varargs[string ,`$`]) =
echo '\L', join data
lf2echo "N", ' ', "I'm"
Run
