config

get local or global configuration


Parameters

config 

Returns

  • :store

Examples

copy
; `config` searches for `config.art` into your current directory. ; if not found, it returns from `~/.arturo/stores/config.art` config ; => [] ; `config.art` is empty at first, but we can change this manually write.append path\home ++ normalize ".arturo/stores/config.art" "language: {Arturo}" config ; => [] ; this stills empty, but now try to relaunch Arturo: exit

copy
config ; => [language:Arturo]

Related