Define global varables - 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: Define global varables (/thread-4340.html) |
Define global varables - rgallier - 07-11-2015 06:51 PM If I have a program to define some global variables. How would I call that program from within another programs to use/define the same global variables? I have made a program that exports all of my global variables. I would now like to use them within the Solve & other apps without having to copy-paste them to all of the other programs. RE: Define global varables - rgallier - 07-11-2015 07:03 PM looks like this works: Code: EXPORT c,c₁,c₂; Code: EXPORT Solve() |