Skip to main content
Post Closed as "Duplicate" by Mr.Wizard
Tweeted twitter.com/StackMma/status/752010921002864640
edited title
Link

should Should I add semicolumna semicolon after a function definition?

Source Link

should I add semicolumn after a function definition?

should I write the program like this:

f[x_]:=x^2; g[x_]:=x+2; 

or should I write the program like this:

f[x_]:=x^2 g[x_]:=x+2 

Which one is good practice, does any of them have side effect?