package scala
object sys {
/** A bidirectional, mutable Map representing the current system Properties.
*
* @return a SystemProperties.
* @see [[scala.sys.SystemProperties]]
*/
def props: SystemProperties = new SystemProperties
/** An immutable Map representing the current system environment.
*
* @return a Map containing the system environment variables.
*/
def env: immutable.Map[String, String] = immutable.Map(System.getenv().asScala.toSeq: _*)