https://github.com/ceu-lang/ceu
The Programming Language Céu
https://github.com/ceu-lang/ceu
Last synced: 3 days ago
JSON representation
The Programming Language Céu
- Host: GitHub
- URL: https://github.com/ceu-lang/ceu
- Owner: ceu-lang
- License: other
- Created: 2012-11-22T18:16:32.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T22:34:48.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T19:51:30.756Z (9 months ago)
- Language: Lua
- Homepage: http://www.ceu-lang.org/
- Size: 17.6 MB
- Stars: 215
- Watchers: 19
- Forks: 23
- Open Issues: 63
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-programming-languages - Céu - Céu is a reactive language that aims to offer a higher-level and safer alternative to C. (Uncategorized / Uncategorized)
README
Céu is a reactive language that aims to offer a higher-level and safer
alternative to C.Try it online:
http://www.ceu-lang.org/
Documentation:
http://ceu-lang.github.io/ceu/
Source code:
https://github.com/ceu-lang/ceu/
Join our chat:
https://gitter.im/fsantanna/ceu
# INSTALLATION
## Install required software:
```
$ sudo apt-get install git lua5.3 lua-lpeg liblua5.3-0 liblua5.3-dev
```(Assuming a Linux/Ubuntu machine.)
## Clone the repository of Céu:
```
$ git clone https://github.com/ceu-lang/ceu
$ cd ceu/
```## Install Céu:
```
$ make
$ sudo make install # install as "/usr/local/bin/ceu"
```## Run the tests (optional):
```
$ cd tst/
$ ./run.lua
```## Run the examples
```
$ make samples
```