2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/let-where-bindung.hs

5 lines
48 B
Haskell
Raw Normal View History

2014-03-18 19:31:04 +01:00
>>> let f = 3; g = f where f = 7
>>> f
3
>>> g
7