Haskell tutorial
It's been a long time, but I've been through a similar learning process learning Prolog in my college AI class. From the article:
Instead:I mean that the following does not happen in normal Haskell:Code: Select all
int a a := 4 print a a := 5 print a > 4 > 5
Code: Select all
print a int a a = 5 > 5