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