%module code

// See if SWIG properly handles someone putting code after a declaration

int fact(int n) {
	if (n <= 1) return 1;
	else return n*fact(n-1);
}




syntax highlighted by Code2HTML, v. 0.9.1