> what I'm expecting to have to do is maintain
> two development stacks, one with Mac-specific things, the other with
> PC-specifics, but sharing 99.5% of their content and coding - even though
> it's not flawless "write once, compile everywhere", I expect it to be a
> large improvement over what I've been doing.

There should be no need to do this. If there is part of your script that is
platform dependant then you just do:

switch the platform
   case "MacOS"
     Mac stuff here
     break
   case "Windows"
     Windows stuff here
     break
   default
     UNIX stuff here
     break
end switch

Revoloution is "write once, compile everywhere"

Monte


Reply via email to