# SPDX-License-Identifier: CC0-1.0 language = 'Forth' display = 'Forth (gforth 0.7.3)' license = [ { name = 'GPL-3.0-only', url = 'https://git.savannah.gnu.org/cgit/gforth.git/tree/COPYING' }, ] filename = 'Main.fs' install = ''' sudo apt -y install gforth ''' execution = [ 'gforth-fast', '-m', '100M', '-d', '100M', '-r', '100M', '-f', '100M', '-l', '100M', 'Main.fs', '-e', 'bye', ]