And make sure that something like (7 + 8 >> stdio + 9) >> stdio
writes 824 to stdout. (In particular >> should have higher precedence than +, unlike <<.)
And make sure that something like
`(7 + 8 >> stdio + 9) >> stdio`
writes 824 to stdout. (In particular >> should have higher precedence than +, unlike <<.)
And make sure that something like
(7 + 8 >> stdio + 9) >> stdio
writes 824 to stdout. (In particular >> should have higher precedence than +, unlike <<.)