The arguments of the program as given by the OS

Property definitions

core :: abstract_text $ Sys :: program_args
	# The arguments of the program as given by the OS
	fun program_args: Sequence[String]
	do
		if _args_cache == null then init_args
		return _args_cache.as(not null)
	end
lib/core/text/abstract_text.nit:2431,2--2436,4