In LaTeX+amsmath, I can say
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\left\{
\begin{aligned}
px-y-4&=0\\
2x-2y-6m&=0
\end{aligned}
\right.
\end{equation*}
\end{document}
to get an aligned system of equations with a brace on the left. How to achieve a similar effect in ConTeXt? I tried saying \startalign[left=\{] and similar things with no effect.
Edit: thanks to Aditya's and Marco's comments below I came up with this:
\starttext
\startformula
\startmathmatrix[left={\left\{},right={\right.},distance=0pt,align={right,left}]
\NC px-y-4\NC{}=0\NC\NR
\NC 2x-2y-6m\NC{}=0\NC\NR
\stopmathmatrix
\stopformula
\stoptext
Now my question is: can this be made better? I do not like the distance=0pt and {} stuff very much (but I guess this keeps the spacing on both sides of the equation sign uniform).

mathmatrix. – Aditya Nov 9 '12 at 8:41{}spacing issue. But to keep the code cleaner you can define your own environment:\definemathmatrix[eqnsystem][left={\left\{},right={\right.},distance=0pt,align={right,left}]and then use\starteqnsystem … \stopeqnsysteminstead. – Marco Nov 12 '12 at 9:13