DEV Community

Discussion on: Write a function that shows off something unique or interesting about the language you're using

Collapse
 
khophi profile image
KhoPhi • Edited

An interesting one I can think of in Python.

Reversing a string

'hello world'[::-1]

How's written in other common languages too can be seen side by side