1
1
---
2
2
title : LIGO
3
3
last_update :
4
- date : 29 June 2023
4
+ date : 8 February 2024
5
5
---
6
6
7
7
LIGO is a functional programming language that is intended to be both user-friendly and to avoid patterns that make formal verification difficult.
@@ -18,57 +18,55 @@ To learn LIGO, see these tutorials:
18
18
- [ Deploy a smart contract with CameLIGO] ( ../../tutorials/smart-contract/cameligo )
19
19
- [ Deploy a smart contract with JsLIGO] ( ../../tutorials/smart-contract/jsligo )
20
20
21
- Let's define a LIGO contract in the two flavours above.
21
+ Here are examples of straightforward LIGO contracts.
22
+ Each contract stores an integer and provides entrypoints that increase or decrease the integer or reset it to zero.
22
23
23
24
## CameLIGO
24
25
25
- ```
26
+ ``` ocaml
26
27
type storage = int
27
28
28
- type parameter =
29
- Increment of int
30
- | Decrement of int
31
- | Reset
29
+ type returnValue = operation list * storage
30
+
31
+ // Increment entrypoint
32
+ [@entry] let increment (delta : int) (store : storage) : returnValue =
33
+ [], store + delta
32
34
33
- type return = operation list * storage
35
+ // Decrement entrypoint
36
+ [@entry] let decrement (delta : int) (store : storage) : returnValue =
37
+ [], store - delta
34
38
35
- let main (action, store : parameter * storage) : return =
36
- [],
37
- (match action with
38
- Increment n -> store + n
39
- | Decrement n -> store - n
40
- | Reset -> 0)
39
+ // Reset entrypoint
40
+ [@entry] let reset (() : unit) (_ : storage) : returnValue =
41
+ [], 0
41
42
```
42
43
43
44
## JsLIGO
44
45
45
- ```
46
- type storage = int;
47
-
48
- type parameter =
49
- ["Increment", int]
50
- | ["Decrement", int]
51
- | ["Reset"];
52
-
53
- type return_ = [list<operation>, storage ];
54
-
55
- let main = (action: parameter, store: storage) : return_ => {
56
- return [
57
- list([]),
58
- match(action, {
59
- Increment: n => store + n,
60
- Decrement: n => store - n,
61
- Reset: () => 0
62
- })
63
- ];
64
- };
46
+ ``` ts
47
+ namespace Counter {
48
+ type storage = int ;
49
+ type returnValue = [ list < operation >, storage ];
50
+
51
+ // Increment entrypoint
52
+ @ entry
53
+ const increment = ( delta : int , store : storage ) : returnValue =>
54
+ [list ([]), store + delta ];
55
+
56
+ // Decrement entrypoint
57
+ @ entry
58
+ const decrement = ( delta : int , store : storage ) : returnValue =>
59
+ [ list ([]), store - delta ];
60
+
61
+ // Reset entrypoint
62
+ @ entry
63
+ const reset = ( _p : unit , _s : storage ) : returnValue =>
64
+ [ list ([]), 0 ];
65
+ }
65
66
```
66
67
67
- This LIGO contract accepts the following LIGO expressions: ` Increment(n) ` , ` Decrement(n) ` and ` Reset ` . Those serve as ` entrypoint ` identification.
68
-
69
68
## Further reading
70
69
71
70
- [ LIGO documentation] ( https://ligolang.org/docs/intro/introduction?lang=jsligo )
72
71
- [ LIGO tutorials] ( https://ligolang.org/docs/tutorials/getting-started?lang=jsligo )
73
72
- [ OpenTezos] ( https://opentezos.com/ligo )
74
-
0 commit comments