Port emptyCodebase transcript to projects

This commit is contained in:
Chris Penner 2024-06-26 11:01:11 -07:00
parent 6a1ccd5a64
commit a92885a8bd
2 changed files with 11 additions and 12 deletions

View File

@ -13,15 +13,15 @@ scratch/main> ls
Technically, the definitions all exist, but they have no names. `builtins.merge` brings them into existence, under the current namespace:
```ucm
scratch/main foo> builtins.merge
scratch/main foo> ls
scratch/main> builtins.merge lib.builtins
scratch/main> ls lib
```
And for a limited time, you can get even more builtin goodies:
```ucm
scratch/main foo> builtins.mergeio
scratch/main foo> ls
scratch/main> builtins.mergeio lib.builtinsio
scratch/main> ls lib
```
More typically, you'd start out by pulling `base`.

View File

@ -15,27 +15,26 @@ scratch/main> ls
Technically, the definitions all exist, but they have no names. `builtins.merge` brings them into existence, under the current namespace:
```ucm
☝️ The namespace .foo is empty.
.foo> builtins.merge
scratch/main> builtins.merge lib.builtins
Done.
.foo> ls
scratch/main> ls lib
1. builtin/ (469 terms, 74 types)
1. builtins/ (469 terms, 74 types)
```
And for a limited time, you can get even more builtin goodies:
```ucm
.foo> builtins.mergeio
scratch/main> builtins.mergeio lib.builtinsio
Done.
.foo> ls
scratch/main> ls lib
1. builtin/ (643 terms, 92 types)
1. builtins/ (469 terms, 74 types)
2. builtinsio/ (643 terms, 92 types)
```
More typically, you'd start out by pulling `base.