I usually use MATHEMATICA as a computer algebra system and there I heavily employ the postfix notation (achieved by "//" at the end of some command), e.g.
Table[{x, Sin[x]}, {x, 0, 3, 0.1}] // ListPlot[#, PlotRange -> {0, 1}] &
Now I'm wondering whether or not something like this exists in MAPLE as well. Maybe someone with a bit of experience in both CAS's is able to translate the simple example above to MAPLE. Thank you very much in advance!
Normally in Maple you would wrap the trailing command around the former, and also perhaps use the special
%name. Eg,or,
If you really want to you can mimic what you've called the "postfix" syntax (which looks like infix, IMO, but no matter the name). This is somewhat similar (and you can adjust how it works, or make it fancier, etc).