# coding=utf-8 id = 113 name = 'shiftleft/2' slug = 'shift a list left' description = '''\
shiftleft(L1, L2)
: the list L2
is obtained from L1 by shifting elements to the left by one (circular shift).
?- shiftleft([1,2,3,4,5], X). X = [2,3,4,5,1].''' hint = {}