DEV Community

Discussion on: Share a code snippet in any programming language and describe what's going on

Collapse
 
leopfeiffer profile image
Leo Pfeiffer

Similar in Scala:

extension(str: String) {
  def like_a_cow = s"Moo ${str} mooooo"
}

scala> "Hello".like_a_cow
val res0: String = Moo Hello mooooo
Enter fullscreen mode Exit fullscreen mode