Skip to content

Instantly share code, notes, and snippets.

@rajasegar
Created March 27, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajasegar/082359760b9e7dbc71e063489e0c44eb to your computer and use it in GitHub Desktop.
Save rajasegar/082359760b9e7dbc71e063489e0c44eb to your computer and use it in GitHub Desktop.
function completeNewEmployee() {
// startup logic here
// Read configuration file
// Init scratch file
// etc
// shutdown logic here
}
function startup() {
// Read configuration file
// Init scratch file
// etc
}
function shutdown() {
}
function completeNewEmployee() {
startup();
// completeNewEmployee logic here
shutdown();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment