Skip to main content
-3 bytes
Source Link
Jo King
  • 48.1k
  • 6
  • 131
  • 187

Perl 6, 66 3 bytes

*.perl&dd 

Try it online!Try it online!

UsesOutputs the built-in convert object to string representation methodto STDERR. To retrieve the original list of strings, you can use *.EVAL

Perl 6, 6 bytes

*.perl 

Try it online!

Uses the built-in convert object to string representation method. To retrieve the original list of strings, you can use *.EVAL

Perl 6, 6 3 bytes

&dd 

Try it online!

Outputs the object representation to STDERR.

Source Link
Jo King
  • 48.1k
  • 6
  • 131
  • 187

Perl 6, 6 bytes

*.perl 

Try it online!

Uses the built-in convert object to string representation method. To retrieve the original list of strings, you can use *.EVAL