'\" t .\" Copyright (c) 2025 Bruce Hill .\" All rights reserved. .\" .TH setenv 3 2025-11-29 "Tomo man-pages" .SH NAME setenv \- set an environment variable .SH LIBRARY Tomo Standard Library .SH SYNOPSIS .nf .BI setenv\ :\ func(name:\ Text,\ value:\ Text?\ ->\ Void) .fi .SH DESCRIPTION Sets an environment variable. .SH ARGUMENTS .TS allbox; lb lb lbx l l l. Name Type Description name Text The name of the environment variable to set. value Text? The new value of the environment variable. If \fBnone\fR, then the environment variable will be unset. .TE .SH RETURN Nothing. .SH EXAMPLES .EX setenv("FOOBAR", "xyz") .EE