I am using the article class with the code:
\documentclass[12pt]{article}
\begin{document}
\section{Foo}
This is an example of foo.
\section{Bar}
This is an example of bar.
\end{document}
This produces:
1 Foo
2 Bar
What I want is a period after the section number:
Foo
Bar
I cannot change away from the article class. How would I accomplish this?