Comments and strings

%This makes a comment.
"While this is a string."

Numbers

0 1.2 .3

Operators

eps*256>=1<>true
""&ditto
z1..z2--z3
5+-+4=3

Types

path p[],q[]

Concrete example

% From plain.mf
vardef penpos@#(expr b,d) =
(x@#r-x@#l,y@#r-y@#l)=(b,0) rotated d;
x@#=.5(x@#l+x@#r); y@#=.5(y@#l+y@#r) enddef;