Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- comment here until end of line
{- comment here -}

View file

@ -0,0 +1,2 @@
! # $ % & * + - . / < = > ? @ \ ^ | - ~ :
: as first character denotes constructor

View file

@ -0,0 +1 @@
.. : :: = \ | <- -> @ ~ => _

View file

@ -0,0 +1 @@
`identifier` (to use as infix operator)

View file

@ -0,0 +1,2 @@
'.'
\ escapes

View file

@ -0,0 +1,2 @@
"..."
\ escapes

View file

@ -0,0 +1,7 @@
\a alert
\b backspace
\f form feed
\n new line
\r carriage return
\t horizontal tab
\v vertical tab

View file

@ -0,0 +1,5 @@
( ) (grouping)
( , ) (tuple type/tuple constructor)
{ ; } (grouping inside let, where, do, case without layout)
[ , ] (list type/list constructor)
[ | ] (list comprehension)

View file

@ -0,0 +1,4 @@
Upper case (identifiers)
Lower case (identifiers)
Digits (numbers)
Symbol/punctuation (operators)