Go to file
Benjamin Loison a17b3c6fdd Make real type works
Otherwise for the following code:

```
node test (i: real) returns (o: real);
let
    o = 0.0;
tel
```

was experiencing:

```
Fatal error: exception Stdlib.Parsing.Parse_error
Raised at Stdlib__Parsing.yyparse.loop in file "parsing.ml", line 139, characters 8-25
Called from Stdlib__Parsing.yyparse in file "parsing.ml", line 165, characters 4-28
Re-raised at Stdlib__Parsing.yyparse in file "parsing.ml", line 184, characters 8-17
Called from Parser.main in file "parser.ml" (inlined), line 1110, characters 4-44
Called from Main in file "main.ml", line 70, characters 16-68
```

Note that `%token REAL` doesn't help to solve this error, but it doesn't seem to be any reason for not having it.
2022-12-10 00:05:07 +01:00
src Make real type works 2022-12-10 00:05:07 +01:00
.gitignore [cleaning] 2022-12-08 14:34:50 +01:00
Makefile [parser] parses and dumps content (without expressions) 2022-12-07 16:45:55 +01:00
README.md README 2022-12-04 16:19:25 +01:00
TODO [parser] adding support for expressions 2022-12-07 21:56:38 +01:00