Arithmetic evaluation: Difference between revisions

Updated D entry: alias this
m (→‎{{header|REXX}}: corrected REXX replacement. -- ~~~~)
(Updated D entry: alias this)
Line 791:
struct Stack(T) {
T[] data;
alias data this = data;
void push(T top) pure nothrow { data ~= top; }