uCBQN/test/cases/gc.bqn
2023-12-04 12:07:03 +02:00

27 lines
926 B
BQN
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

%DEF base (
VVariation, UUnshare, LVListVariations CLRClearRefs, GC •internal
UseGC {𝕊: 𝕨 𝕩 GC@ @}
_tvaru {
F _𝕣 x: { F 𝕩 V U¨ x CLR@}¨ LV 𝕩;
w F _𝕣 x: (LV 𝕨) {(𝕨 V U¨ w) F 𝕩 V U¨ x CLR@} LV 𝕩
}
)
%USE base UseGC¨_tvaru 4
%USE base UseGC¨_tvaru˜ 4
%USE base (4)(UseGC¨)_tvaru 4
%USE base (UseGC¨)(4)_tvaru 4
%USE base UseGC` _tvaru 5
%USE base 1(UseGC`)_tvaru 5
%USE base UseGC`_tvaru 42
%USE base (2) UseGC`_tvaru 42
%USE base UseGC´ _tvaru 4
%USE base @(UseGC´)_tvaru 4
%USE base UseGC˝ _tvaru 4
%USE base @(UseGC˝)_tvaru 4
%USE base UseGC˝ _tvaru 42
%USE base (2) (UseGC˝)_tvaru 42