You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
275 B

/*===
0
0
0
===*/
/* The ToNumber() coercion yields zero from an empty string or
* from a string consisting entirely of whitespace. See E5
* Section 9.3.1.
*
* Unary plus is an easy way to get a plain ToNumber() coercion.
*/
print(+"");
print(+" ");
print(+"\n\n");