# CKB Easy Script
CKB Easy Script is a framework for developing ckb contracts. It is currently in early development stages. You can see how to use ckbes in the examples. If you have installed ckb-debugger, you can execute the contract script in the virtual environment by:
```sh
$ cargo run --example exit_0
# Run result: 0
# All cycles: 9244(9.0K)
$ cargo run --example exit_1
# Run result: 0
# All cycles: 9244(9.0K)
$ cargo run --example echo Hello World!
# Script log: Hello World!
# Run result: 0
# All cycles: 36184(35.3K)
```
# Licences
MIT.