Skip to content

Instantly share code, notes, and snippets.

@nesterone
Last active January 19, 2020 14:47
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 nesterone/31b2df3f5ad261cdd4e652787bc267c5 to your computer and use it in GitHub Desktop.
Save nesterone/31b2df3f5ad261cdd4e652787bc267c5 to your computer and use it in GitHub Desktop.
/* @todo: #1132:15m/DEV Implement Number Sum Calculation
*
*/
export class NumberSumCalculation implements Calucation<number> {
/**
* Create a number sum calculation.
* @param {number} left - The left value.
* @param {number} right - The right value.
*/
constructor(){
throw new NotYetImplemented();
}
calculate(): number {
throw new NotYetImplemented();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment