checking out new stuff

This commit is contained in:
Kevin Jahns
2015-06-15 14:53:02 +02:00
parent 1b63f5efde
commit 159f37474d
57 changed files with 220 additions and 160705 deletions

14
src/Buffer.js Normal file
View File

@@ -0,0 +1,14 @@
/* @flow */
class Buffer {
i : number;
constructor () {
this.i = 4;
}
}
function add(x : string){
return x + 4;
}
add("5");

4
src/y.js Normal file
View File

@@ -0,0 +1,4 @@
/* @flow */
/* global Buffer */
var buffer = new Buffer(3);