>
On Thu, Apr 15, 2010 at 3:25 PM, Wes James <> wrote: <snip> > > and this code: > > main(WArg,HArg) -> > W = WArg, %list_to_integer(atom_to_list(WArg)), > H = HArg, %list_to_integer(atom_to_list(HArg)), hmm, interesting. erl.... A='200' '200' B=atom_to_list(A). "200" C=list_to_integer(B). 100 atom is in single quote and list is in double quote?? -wes