Just wondering...
Is a program with only constant variables still a program?
Would the answer change between a high level language and pure machine code?
My thinking is that the operating system would assign these values to memory, not the program/process, and the program, if it did have instructions, would operate on that data. Or is the program/process responsible for loading the variables into memory?
for example, assuming a high level language that supported not having an entry point, would a single declaration of x = 5; constitute a program?
