fork download
  1. mylast(x,L|T) :- mylast(x,T).
  2. mylast(x,L|[]) :- x=L.
  3.  
  4. mylast(3, [1,2,3]).
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.pl:1:11: syntax error: , or ) expected
prog.pl:2:11: syntax error: , or ) expected
	2 error(s)
compilation failed
stdout
Standard output is empty