Skip to content

fix ref counting #66

Description

@nbittich

this should work:

store = struct  {todos: [struct {value:"do some work"}]}


for t in &store{
    println(t)
}

this also should work:

store = struct  {todos: [struct {value:"do some work"}]}


for t in &store{
     t.checked=true
}

this too:

store = struct  {todos: [struct {value:"do some work"}]}
x = &store

for t in x{
     t.checked=true
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions