Skip to content

Instantly share code, notes, and snippets.

@mizrael
Last active February 26, 2018 10:30
Show Gist options
  • Save mizrael/7dbb2b33227a4d40ef830a217ee7833b to your computer and use it in GitHub Desktop.
Save mizrael/7dbb2b33227a4d40ef830a217ee7833b to your computer and use it in GitHub Desktop.
Feature gating
function compute_stuff(){
/*...*/
old_tested_reliable_and_lovely_function();
/*...*/
}
function compute_stuff(){
/*...*/
//old_tested_reliable_and_lovely_function();
new_amazing_shiny_never_used_function();
/*...*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment