Add support for record selector syntax for tupes for CakeML
Open
- Dominant language
- Standard ML
- Stars
- 1.2k
- Forks
- 104
- Avg merge
- 2d 21h
- Merged PRs (30d)
- 16
Description
This issue is about adding support for record selector syntax for CakeML tuples.
i.e. ```#1 (a,b)```.
The main difficulty in implementing it is such that if a fixed tuple type is not found it should fail.
examples.
```
fun a x = #1 x (*fails*)
```
```
fun a (x : 'a * 'b) = #1 x (*works*)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.