Skip to content
This repository was archived by the owner on Feb 3, 2020. It is now read-only.
This repository was archived by the owner on Feb 3, 2020. It is now read-only.

Array Literals #61

Description

@sunjay

We use byte strings to initialize arrays of bytes. This works for things that can be represented by just strings, but what about more types like arrays of booleans or arrays of u8 for example?

Support this syntax for any type of array:

let a: [bool; 5] = [true, false, true, true, false];
let b: [u8; 5] = [0, 1, 2, 3, 4];

Implementation Notes

Add another literal type to scope item and implement this like a numeric literal or a byte literal.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions