Files
scryer-prolog/benches/numlist.pl
2023-11-11 13:32:34 -06:00

3 lines
97 B
Prolog

:- use_module(library(between)).
run_numlist(Upper, Head) :- numlist(1, Upper, L), L = [Head|_].