# Pastebin 6rTIlqCv use Air::Functional :BASE; use Air::Base; use Air::Plugin::Wordcloud; my %words = Raku => 10, Air => 9, HTMX => 7, Grammar => 8, "»" => 9, "«" => 9, "∞" => 8, ; my $site = site :register[Air::Plugin::Wordcloud.new, LightDark.new], page main [ h3 'Word Cloud'; wordcloud %words, :width(700), :height(400); ] ; $site.serve;