Skip to content

Instantly share code, notes, and snippets.

@tony-o

tony-o/out.txt Secret

Created March 8, 2023 20:24
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 tony-o/a614749299b5d2d82a1d77d69f571f75 to your computer and use it in GitHub Desktop.
Save tony-o/a614749299b5d2d82a1d77d69f571f75 to your computer and use it in GitHub Desktop.
<html>
<head>
</head>
<body>
<header>
hello, whatever your name is
</header>
<p>
just kidding, rf
</p>
</body>
</html>
use Ryml::Components;
sub page($name) {
html[
head[],
body[
header[ 'hello, whatever your is', ],
p[ "just kidding, {$name}", ],
],
].render;
}
say page('rf');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment