Skip to content
This repository has been archived by the owner on Dec 27, 2020. It is now read-only.
Tom MacWright edited this page Sep 28, 2017 · 1 revision
// Add two numbers together.
// 
// ```
// var three = addTwo(1, 2);
// ```
function addTwo(a: number, b: number): number /* Sum of the two numbers */ {
  return a + b;
}
Clone this wiki locally