# Pastebin h3IhqGef raku -MRed -e ' model Person { has Int $.id is id; has Str $.name is column; has Int $.age is column; has Str $.email is unique; } red-defaults "SQLite"; Person.^create-table; for [ %(:1id, :name, :30age, :email), %(:2id, :name, :25age, :email ), ] -> %data { Person.^create: |%data } say "\nAll entries: "; .say for Person.^all; say "\nEntries with name starting with `A`:"; .say for Person.^all.grep: *.name.starts-with: "A"; '