Skip to content

Instantly share code, notes, and snippets.

@FCO

FCO/1.p6 Secret

Last active December 7, 2018 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FCO/21e3a2471b45ff93c2811d7093ab36df to your computer and use it in GitHub Desktop.
Save FCO/21e3a2471b45ff93c2811d7093ab36df to your computer and use it in GitHub Desktop.
use Red;
model Person {
has UInt $.id is serial;
has Str $.name is column;
has Str $.email is column{ :nullable };
}
my $*RED-DB = database "SQLite";
Person.^create-table;
Person.^create: :name<Fernando>, :email<fco@aco.com>;
Person.^create: :name<Aline>, :email<aja@aco.com>;
Person.^create: :name<Fernanda>;
Person.^create: :name<Sophia>;
.say for Person.^all.grep(*.email.defined).map: *.name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment