nix repl: Support printing floating-point numbers

This commit is contained in:
Eelco Dolstra 2017-07-31 15:15:49 +02:00
parent eb1d1ca780
commit c6184dec6c
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -652,6 +652,10 @@ std::ostream & NixRepl::printValue(std::ostream & str, Value & v, unsigned int m
str << ESC_BLU "«primop-app»" ESC_END;
break;
case tFloat:
str << v.fpoint;
break;
default:
str << ESC_RED "«unknown»" ESC_END;
break;