TypL icon indicating copy to clipboard operation
TypL copied to clipboard

Another example of Typl inference

Open getify opened this issue 5 years ago • 0 comments

function foo(v) {
    return v;
}

var x = foo(2);
x = "hello";  // error: expected 'int' but found 'string'

getify avatar Apr 11 '19 17:04 getify