RosettaCodeData/Task/Hello-world-Graphical/Jq/hello-world-graphical-2.jq
2017-09-25 22:28:19 +02: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