Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
1 result

dwim-example.js

Blame
  • dwim-example.js 176 B
    // Example of problematic DWIM:
    function dwim() {
      return
        computeSomeNumber() +
        computeAnotherNumber() +
        computeYetAnotherNumber() +
        computeTheLastNumber();
    }