Skip to content

Commit a9f001f

Browse files
committed
readme fix
1 parent 0a8c498 commit a9f001f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ Sample usage:
1919
> import Data.Show (show)
2020
> "Pi: ${pi}, Phi: ${phi}" <^> ["pi" /\ (show 3.1415), "phi" /\ (show 1.618)]
2121
"Pi: 3.1415, Phi: 1.618"
22+
```
23+
24+
```haskell
25+
> import Data.TemplateString ((<->))
26+
> import Data.Tuple.Nested ((/\))
2227
> "Pi: ${pi}, Phi: ${phi}" <-> ["pi" /\ 3.1415, "phi" /\ 1.618]
2328
"Pi: 3.1415, Phi: 1.618"
2429
```

0 commit comments

Comments
 (0)