Sudha Parimala
sudha [at] tarides [dot] com
Tarides
OCaml is an industrial strength functional programming language
OCaml is an industrial strength functional programming language
Programming languages matter!
A Language that doesn’t affect the way you think about programming, is not worth knowing!
-Alan Perils
Feature | Mainstream Languages | FP Languages |
---|---|---|
Garbage Collection | Java [1995] | LISP [1958] |
Higher Order Functions | Java 8 [2014], C# 3.0 [2007] | LISP [1958] |
Type-inference | C++ [2007], Java 7 [2011] | ML [1990] |
Generics | Java 5 [2004] | ML [1990] |
Who are we writing programs for?
Who are we writing programs for?
OCaml lets you write elegant programs!
Python
length = 0
for i in test_list:
length = length + 1
print (length)
OCaml
let rec length list =
match list with
| [] -> 0
| x :: xs -> 1 + length list
val length : 'a list -> int = <fun>
Base types
Sum Types
type day = Sun | Mon | Tue | Wed | Thu | Fri | Sat
Algebraic Data Types
type 'a tree = Empty
| Node of 'a * 'a tree * 'a tree
let rec preorder f = function
Empty -> ()
| Node (v,l,r) -> f v;
preorder f l;
preorder f r
Algebraic Data Types
let rec inorder f = function
Empty -> ()
| Node (v,l,r) -> inorder f l;
f v;
inorder f r
let rec postorder f = function
Empty -> ()
| Node (v,l,r) -> postorder f l;
postorder f r;
f v
let multiply x y = x * y
let double = multiply 2
let four = double 2
let compose f g x = f (g x)
let double x = 2 * x
let square x = x * x
let double_then_square = compose double square
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing