Files
frontend-bootcamp/step2-01/exercise/src/stack.ts
2019-02-22 15:02:53 -08:00

11 lines
143 B
TypeScript

// TODO: create a Stack<T> generic class here:
/**
*
* export class Stack<T> {
* push(...) { ... }
* pop(...) { ... }
* }
*
*/