HP Forums
Array of Strings?? - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: Array of Strings?? (/thread-180.html)



Array of Strings?? - jgreenb2 - 12-20-2013 04:41 PM

How do you create an array of strings in HP PPL?


RE: Array of Strings?? - eried - 12-20-2013 04:45 PM

Code:
EXPORT NAME()
BEGIN
local v1;
v1:={"array","of","strings"};
END;



RE: Array of Strings?? - patrice - 12-20-2013 05:55 PM

Lists can contain almost anything including lists.


RE: Array of Strings?? - jgreenb2 - 12-21-2013 12:53 AM

Thanks!