Attached: 1 image @josi@fosstodon.org base::use() is … not great. First off, the syntax is not ergonomic, and *syntax matters*. But secondly, and worse, it doesn’t actually work: because it’s just library() under the hood it still attaches things globally, and if you call it twice on the same package, the second call is ignored, so it doesn’t compose. The following code does not work, which is makes it useless. Of course I’m biased but base::use() really strikes me as a botched imit...