Skip to content

Commit 294d8dc

Browse files
committed
Berry: edit GC and notes for style
Resolves #93.
1 parent 33c0852 commit 294d8dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ To sort and filter the list interactively, visit the [webpage](https://dbohdan.g
2525
| Awk | [Libmawk](http://repo.hu/projects/libmawk/) | C | Ref. counting | **GPL-2.0** | Implements Awk. A fork of mawk 1.3 restructured for embedding. |
2626
| Awk, Basic, Pascal | [Libfawk](http://repo.hu/projects/libfawk/) | C | Ref. counting | BSD-3-Clause | A multi-language VM. Includes compilers for three languages: Fawk (Awk dialect), Fbas (Basic dialect), and Fpas (Pascal dialect). |
2727
| Basic | [MY-BASIC](https://github.com/paladin-t/my_basic) | C | Ref. counting + cycle-detecting tracing GC | MIT | A Basic dialect with prototype-based OOP. |
28+
| Berry | [Berry](https://github.com/berry-lang/berry) | C | Tracing | MIT | Lightweight dynamically-typed embedded scripting language designed for lower-performance devices with limited memory. |
2829
| Boron | [Boron](http://urlan.sourceforge.net/boron/) | C | Tracing | LGPL-3.0-or-later | An embeddable scripting language similar to Rebol. |
2930
| C | [PicoC](https://github.com/zsaleeba/picoc) | C | None (manual MM) | BSD-3-Clause | Statically typed. Interprets a subset of C. |
3031
| C | [tcc](https://repo.or.cz/tinycc.git/) | C | None | LGPL-2.0-only | A small C compiler that can be used as a library for a C JIT. [libtcc header](https://repo.or.cz/tinycc.git/blob/HEAD:/libtcc.h). [Embedding example](https://repo.or.cz/tinycc.git/blob/HEAD:/tests/libtcc_test.c). |

data/projects.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ notes = "An small, embeddable Java source code interpreter. Understands Java cod
6666
url = "https://github.com/berry-lang/berry"
6767
lang = "Berry"
6868
impl_in = "C"
69-
gc = "Mark-Sweep GC"
69+
gc = "Tracing"
7070
license = "MIT"
71-
notes = "Ultra-lightweight dynamically typed embedded scripting language, designed for lower-performance devices with limited memory."
71+
notes = "Lightweight dynamically-typed embedded scripting language designed for lower-performance devices with limited memory."
7272

7373
[Boron]
7474
url = "http://urlan.sourceforge.net/boron/"

0 commit comments

Comments
 (0)