You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it is not safe to use list.append because in rust that method is defined to take another list/vector and drain its items into list. You should use list.push instead, and read the document for rusts vector class: http://doc.rust-lang.org/std/vec/struct.Vec.html