Difference between revisions of "User:Lenny222/Haskell explained to the busy"

From HaskellWiki
Jump to navigation Jump to search
Line 18: Line 18:
 
|'''Point-free style''' is another way to define TODO
 
|'''Point-free style''' is another way to define TODO
 
|-
 
|-
|What is the meaning of the dollar ('''$''')?
+
|What is the meaning of the dollar sign ('''$''')?
 
|'''$''' is just a way to avoid typing too many brackets.
 
|'''$''' is just a way to avoid typing too many brackets.
 
For example:
 
For example:

Revision as of 08:53, 29 September 2009

You have heard about Haskell but can not afford to spend much time to find out what it is?

I hope this page will be for you.

Introduction

Syntax

Question Answer
What is point-free style? Point-free style is another way to define TODO
What is the meaning of the dollar sign ($)? $ is just a way to avoid typing too many brackets.

For example:

h (g (f x))

is the same as

h $ g $ f x
What is the meaning of the dot (.)? . is TODO