1
0
Fork 0
forked from fun/fun
fun/examples/os_env.fun

35 lines
759 B
Standard ML
Executable file

#!/usr/bin/env fun
/*
* This file is part of the Fun programming language.
* https://fun-lang.xyz/
*
* Copyright 2025 Johannes Findeisen <you@hanez.org>
* Licensed under the terms of the Apache-2.0 license.
* https://opensource.org/license/apache-2-0
*/
// Environment variables via env(name):
// - Returns the value as a string.
// - If the variable is not set, returns an empty string.
print("HOME=" + env("HOME"))
print("SHELL=" + env("SHELL"))
print("FUN_NOT_SET=" + env("FUN_NOT_SET"))
// You can use it in scripts, e.g.:
fun greet()
user = env("USER")
if user == ""
print("Hello, mysterious friend!")
else
print("Hello, " + user + "!")
greet()
/* Possible output:
HOME=/home/hanez
SHELL=/bin/zsh
FUN_NOT_SET=
Hello, hanez!
*/