main{
  double d1 = 2.3;
  double d2{2.3};
  string eisti{"POSE"};

  int i=7.2; //ok (alors que non)
  int i{7.2}; //ERROR donc c'est ok


  auto ch = 'x';
  auto z=sqrt(y);
}
