checking out new stuff
This commit is contained in:
14
src/Buffer.js
Normal file
14
src/Buffer.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/* @flow */
|
||||
|
||||
class Buffer {
|
||||
i : number;
|
||||
constructor () {
|
||||
this.i = 4;
|
||||
}
|
||||
}
|
||||
|
||||
function add(x : string){
|
||||
return x + 4;
|
||||
}
|
||||
|
||||
add("5");
|
||||
Reference in New Issue
Block a user