RosettaCodeData/Task/Hello-world-Graphical/Jq/hello-world-graphical-2.jq
2023-07-01 13:44:08 -04:00

7 lines
321 B
Text

def task:
svg(null;null), # use the defaults
linearGradient("gradient"; "rgb(255,255,0)"; "rgb(255,0,0)"), # define "gradient"
("Goodbye, World!" | text(10; 50; {"fill": "url(#gradient)"})), # notice how the default for "fill" is overridden
"</svg>";
task