mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 22:38:04 +02:00
5 lines
48 B
Haskell
5 lines
48 B
Haskell
|
>>> let f = 3; g = f where f = 7
|
||
|
>>> f
|
||
|
3
|
||
|
>>> g
|
||
|
7
|