kiselgra / c-mera

Next-level syntax for C-like languages :)
Other
407 stars 17 forks source link

remove superflous whitespace #24

Open lispbub opened 8 years ago

lispbub commented 8 years ago

remove superflous whitespace (see #22)

kiselgra commented 8 years ago

I'd also like to get rid of the whitespace after the name of a function when it is defined, e.g.

(function foo () -> void (return))

gives

void foo () { return }

not

void foo() { return }

Maybe we could even make that stuff configurable?