Hi, I am an absolute newbie to programming. I wonder whether I can execute the commands from a Text file directly
Suppose that has a text file that
1) is called: example.txt
2) is located at: \\wsl$\Ubuntu\home\myname\example.txt
3) has the following two lines of commands
$p = new Polytope(POINTS=>[[1, 1, 2, 3,], [1, 4, 5, 2,], [1, 4, 5, 2,],]);
print $p->FACETS;
Is there any way that I can use the interactive session to call out the text file and execute these commands? Thank you!