0

Do Rebol and Red have automatic or manual methods for garbage collection or memory management to avoid system crashes?

If so, what are the methods that can be called manually to clear up memory problems?

rnso
  • 23,686
  • 25
  • 112
  • 234
  • *"Rebol ... seem to be new programming languages"* => depends on your standards for "new". Rebol 1.0 was [released in 1997](https://en.wikipedia.org/wiki/Rebol), 20 years ago at time of writing. – HostileFork says dont trust SE Nov 17 '17 at 16:12

1 Answers1

1

Rebol has garbage collection see recycle ,

Red will get it, see trello

sqlab
  • 6,412
  • 1
  • 14
  • 29
  • That is great news. Please see my compile question also: https://stackoverflow.com/questions/46210235/compile-rebol-code-to-executable – rnso Sep 14 '17 at 07:20
  • Red already has a simple garbage collector: https://www.red-lang.org/2018/12/064-simple-gc-and-pure-red-gui-console.html – Maciej Łoziński Jan 20 '20 at 13:31