A belief containing a list as an argument can be constructed by passing tuples representing the list to the Literal constructor. e.g ``` my_literal = Literal("my_functor", ((12, 45), )) ``` is equivalent to the literal within ASL ``` my_functor([12, 45]) ```