Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit b5f0ea9

Browse files
Update to use separate entrypoints (#314)
1 parent 7924bb2 commit b5f0ea9

File tree

1 file changed

+35
-37
lines changed
  • docs/smart-contracts/languages

1 file changed

+35
-37
lines changed
+35-37
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: LIGO
33
last_update:
4-
date: 29 June 2023
4+
date: 8 February 2024
55
---
66

77
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:
1818
- [Deploy a smart contract with CameLIGO](../../tutorials/smart-contract/cameligo)
1919
- [Deploy a smart contract with JsLIGO](../../tutorials/smart-contract/jsligo)
2020

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.
2223

2324
## CameLIGO
2425

25-
```
26+
```ocaml
2627
type storage = int
2728
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
3234
33-
type return = operation list * storage
35+
// Decrement entrypoint
36+
[@entry] let decrement (delta : int) (store : storage) : returnValue =
37+
[], store - delta
3438
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
4142
```
4243

4344
## JsLIGO
4445

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+
}
6566
```
6667

67-
This LIGO contract accepts the following LIGO expressions: `Increment(n)`, `Decrement(n)` and `Reset`. Those serve as `entrypoint` identification.
68-
6968
## Further reading
7069

7170
- [LIGO documentation](https://ligolang.org/docs/intro/introduction?lang=jsligo)
7271
- [LIGO tutorials](https://ligolang.org/docs/tutorials/getting-started?lang=jsligo)
7372
- [OpenTezos](https://opentezos.com/ligo)
74-

0 commit comments

Comments
 (0)