https://github.com/nakidai/3cl
CCL interpreter implementation
https://github.com/nakidai/3cl
c ccl esoteric-language interpreter
Last synced: about 1 year ago
JSON representation
CCL interpreter implementation
- Host: GitHub
- URL: https://github.com/nakidai/3cl
- Owner: nakidai
- License: 0bsd
- Created: 2024-07-04T21:08:51.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-04-15T13:42:29.000Z (about 1 year ago)
- Last Synced: 2025-05-08T01:14:56.961Z (about 1 year ago)
- Topics: c, ccl, esoteric-language, interpreter
- Language: C
- Homepage:
- Size: 135 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
README(7) Miscellaneous Information Manual README(7)
NAME
3cl - c cool char lang interpreter
DESCRIPTION
3cl is an interpreter of cool char lang which is a brainfuck-like
langauge, but different and with more features.
EXAMPLES
F {
/ define some local variables to work with
&a &b &c
/ if the parameter is either 0 or 1,
/ return with it
c? #; $c+ = c
c? #;
/ otherwise, get 2 previous numbers
/ of a sequence and sum them
= c $c $c
- @F = a
-- @F = b
$a $b*
}
SEE ALSO
3cl(1), ccl(7), Original implementation:
https://github.com/holy-8/cool_char_lang
3cl 3cl