2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/let-where-bindung.hs
2014-03-18 19:31:04 +01:00

5 lines
No EOL
48 B
Haskell

>>> let f = 3; g = f where f = 7
>>> f
3
>>> g
7