commit | eed14447a6e46c0dc5438bb8809917673c8f943f | [log] [tgz] |
---|---|---|
author | Austin Schuh <austin.linux@gmail.com> | Sat Mar 23 14:42:46 2019 -0700 |
committer | Austin Schuh <austin.linux@gmail.com> | Sat Mar 23 14:44:18 2019 -0700 |
tree | 2e48b1917eb2a10ca9b821b013afd4b89d358b92 | |
parent | 48dbc74694416825d271f34b19f83b4ed2ea7bf9 [diff] [blame] |
Add a super simple typescript example Change-Id: I1014a889a3bb74f291a214966b32cd21e791ed7c
diff --git a/y2019/vision/server/demo.ts b/y2019/vision/server/demo.ts new file mode 100644 index 0000000..b310758 --- /dev/null +++ b/y2019/vision/server/demo.ts
@@ -0,0 +1,5 @@ +declare var foo: number; + +foo = 5; + +console.log("Half the number of widgets is " + (foo / 2));