Skip to content

Instantly share code, notes, and snippets.

@crux
Created November 14, 2023 09:47
Show Gist options
  • Save crux/d663e3d82b8fc1faa4349714d0f57e8c to your computer and use it in GitHub Desktop.
Save crux/d663e3d82b8fc1faa4349714d0f57e8c to your computer and use it in GitHub Desktop.

Why I do not like automatic code formatters.

#Ruby ensure:

def foo
  puts 'foo'
ensure
  puts 'ensure'
end

written in #Java:

void foo() {try{
  System.out.println("foo");
}finally{
  System.out.println("catch");
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment