Haskell rare pattern matching

Viewed 231

In haskell, I can do:

s@"Hello" = s 

The result is:

>s
>"

It begins to print the String but never ends, what is goin on?

2 Answers
Related