1- `import std.experimental.scripting ` as a global convenience import
1+ `import std.experimental.all ` as a global convenience import
22
3- $(MREF std,experimental,scripting ) allows convenient use of all Phobos modules
3+ $(MREF std,experimental,all ) allows convenient use of all Phobos modules
44with one import:
55
66---
7- import std.experimental.scripting ;
7+ import std.experimental.all ;
88void main()
99{
1010 10.iota.map!log.sum.writeln;
@@ -13,11 +13,11 @@ void main()
1313
1414For short scripts a lot of imports are often needed to get all the
1515modules from the standard library.
16- With this release it's possible to use `import std.experimental.scripting ` for importing the entire
16+ With this release it's possible to use `import std.experimental.all ` for importing the entire
1717standard library at once. This can be used for fast prototyping or REPLs:
1818
1919---
20- import std.experimental.scripting ;
20+ import std.experimental.all ;
2121void main()
2222{
2323 6.iota
@@ -34,6 +34,6 @@ In this case, $(LINK2 $(ROOT)spec/module.html#static_imports, static imports) or
3434$(LINK2 $(ROOT)spec/module.html#renamed_imports, renamed imports) can be used
3535to uniquely select a specific symbol.
3636
37- The baseline cost for `import std.experimental.scripting `
37+ The baseline cost for `import std.experimental.all `
3838is less than half a second (varying from system to system) and
3939work is in progress to reduce this overhead even further.
0 commit comments