download

download file from url to disk


Parameters

download url :string

Attributes

as:stringset target file

Returns

  • :nothing

Examples

copy
download "https://github.com/arturo-lang/arturo/raw/master/logo.png" ; (downloads file as "logo.png")

copy
download.as:"arturoLogo.png" "https://github.com/arturo-lang/arturo/raw/master/logo.png" ; (downloads file with a different name)

Related