RosettaCodeData/Task/Hello-world-Graphical/Jq/hello-world-graphical-2.jq

8 lines
321 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
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