diff options
Diffstat (limited to 'frontend/syntax.icl')
-rw-r--r-- | frontend/syntax.icl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index 6c88232..4866f1a 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -382,7 +382,6 @@ where (<<<) file (RecordUpdate cons_symbol expression expressions) = file <<< '{' <<< cons_symbol <<< ' ' <<< expression <<< " & " <<< expressions <<< '}' (<<<) file (TupleSelect field field_nr expr) = file <<< expr <<<'.' <<< field_nr // (<<<) file (Lambda vars expr) = file <<< '\\' <<< vars <<< " -> " <<< expr - (<<<) file WildCard = file <<< '_' (<<<) file (MatchExpr cons expr) = file <<< cons <<< " =: " <<< expr (<<<) file EE = file <<< "** E **" (<<<) file (NoBind _) = file <<< "** NB **" |