MasonMcGill
MasonMcGill
- VSCode Version: 1.69.2 - Local OS Version: Kubuntu 22.04 - Remote OS Version: Ubuntu 22.04 - Remote Extension/Connection Type: Containers - Logs: ``` ... [2022-08-02T21:26:51.162Z] #0 55.85 Get:154 http://archive.ubuntu.com/ubuntu...
I have the following directory structure: ``` artifacts/ web-demo/ dist/ target/ ... web-demo/ src/ main.rs Cargo.lock Cargo.toml ... ``` with the intention being to separate source code that gets copied...
Hi, I'm trying to understand the behavior of `BaseName.get_type_hint`. The docs say it "returns type hints like `Iterable[int]` or `Union[int, str]`", but it looks like the type arguments are omitted...
``` nim type ZeroGenerator = object proc next(g: ZeroGenerator): int = 0 # This compiles. type TripleOfInts = tuple a, b, c: type(new(ZeroGenerator)[].next) # This raises a compiler error before...