If C was written like
{if {x == 1}{ {return {x + 1};} }
Also your syntax is terrible. There are already s-expression versions of c:
(if (== x 1) (return (+ x 1)))