added release.txt blurb. Fixed spelling typo in Defaults.xml
[scons.git] / test / option / fixture / SConstruct__experimental
blobd1e8fc7a90e30a06a9e5799c919b90a4b04d13fc
1 # SPDX-License-Identifier: MIT
3 # Copyright The SCons Foundation
5 from SCons.Script.SConsOptions import experimental_features
7 print("All Features=%s" % ','.join(sorted(experimental_features)))
9 DefaultEnvironment(tools=[])
10 env = Environment(tools=[])
12 exp = GetOption('experimental')
13 print("Experimental=%s" % sorted(exp))