What I am trying to do is change the
cin >> varible;
into something different so when I find it easier when I code.
The line that I am changing it to is
input (varible);
i am using this:
#define input(i) cin >> (i);
it works, however it will only allow me to input one thing and not loads for example:
say ("Welcome to my first script, what is your name");
input(name);
-- will work
but, this will not:
say ("Welcome to my first script, what is your name");
input(name);
say ("That's great! How old are you?")
input(age);
any ideas, please help :( thank you