Assert(0.1)

[color=red]
root [0] assert(0.1)
Assertion (0.1) error: FILE:/tmp/fileiF1VOR_cint LINE:1

FILE:fileiF1VOR_cint LINE:1 cint>
[/color]

I mean 0.1 is not 0

#include <iostream.h>
#include <assert.h>

int
main()
{
  assert(0.1);

  cout << "?\n";
}

this is printing ? if compiled

Hi Dimitar,
sure, no need to prove that :-] I’ve contacted Masa, the author of Cint, with a suggestion how to fix it. He’ll probably comment here.
Axel.