You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the synopsis section in the readme, you have the following:
/* * `sum` function takes either two numbers or two strings as a parameter, * and returns a number or a string respectively. */varadd=typify("sum :: a : number|string => a -> a -> a",function(a,b){returna+b;});
It looks like var add should instead be var sum.
The text was updated successfully, but these errors were encountered:
In the synopsis section in the readme, you have the following:
It looks like
var add
should instead bevar sum
.The text was updated successfully, but these errors were encountered: