Actual source code: example1.edp
 1 /*******************************************************
 2  *  This file is part of the FreeFEM tutorial made by  *
 3  *      Pierre Jolivet <pierre@joliv.et>               *
 4  *                                                     *
 5  *  See https://joliv.et/FreeFem-tutorial for more     *
 6  *                                                     *
 7  *   Description: basic FreeFEM types                  *
 8  *******************************************************/
  
10 int myInteger = 4;
11 real myDouble = 4.0;
12 complex myComplexDouble = myDouble + 1i * myInteger;
13 string foo;
14 foo = "bar";
15 cout << foo << endl;