Carl Gay

Results 131 issues of Carl Gay

`format` should have a way to format floating point numbers. I assume we'll use `%f`. Depends on #225 and ties into #1158.

Document `io:pprint:printing-logical-block`.

Docs

```dylan define thread variable *foo* :: false-or() = 1; // No warning for this dynamic-bind (*foo* = make()) end; // There is a warning for this. dynamic-bind (*foo* = "")...

Compiler Typist

https://github.com/dylan-lang/opendylan/issues/52, https://github.com/dylan-lang/opendylan/issues/131, and https://github.com/dylan-lang/opendylan/issues/1134 report specific instances of this problem. I'm closing them as duplicates of this more general issue but they may be useful examples for testing. I don't...

Compiler Warnings
Usability

There is no warning for excluding a non-existent name: ``` define module foo use common-dylan, exclude: { no-such-name }; end; ```

Compiler Warnings

I'm pretty sure the issue here is deeper than the `export tags` command, but that's the way the problem surfaces for me. If I `use operating-system, prefix: "os/"`, the tags...

Compiler

Got this run-time error. Sure would have been nice to know the type of the argument being passed to it. `Error: Attempted to call {: ??? () => (#rest)} with...

Compiler

**GOT** (I inserted line breaks to avoid scroll bars.) ``` .../dylan/repo/package-manager/catalog.dylan:33-35: Serious warning - No applicable methods for call to error (cond-or-string :: , #rest arguments :: ) => (will-never-return...

Compiler Warnings

I would expect a compile-time warning for this: ``` let v = make(limited(, of: ), size: 1); v[0] := #t; ``` (There *is* a run-time error, as expected.)

Compiler Warnings

Document `with-output-to-string` and `with-input-from-string` in io/streams.

Docs