mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-04 06:16:00 +03:00
14 lines
273 B
Plaintext
14 lines
273 B
Plaintext
|
|
// Tuples
|
|
tuple = (0xFF, 0xFF)
|
|
nested_tuple1 = (0xFF, (0xFF,0xFF))
|
|
nested_tupel2 = ((0xFF,0xFF), 0xFF)
|
|
empty_tuple = ()
|
|
|
|
// Records
|
|
record = { x = 0xFF, y = 0xFF }
|
|
nested_record = { x = 0xFF, y = { x = 0xFF, y = 0xFF }}
|
|
empty_records = {}
|
|
|
|
|