Louis Thibault

Results 119 comments of Louis Thibault

> > 有没有高手继续修正支持1.13的? > > i already fix bugs on golang1.13, always only test on Linux. you can checout it https://github.com/pkujhd/goloader @dearplain Would you consider archiving this repository and redirecting...

Perhaps we could use an interface to "tag" values as macros? ```go type Macro interface{ Macro() } ``` We would then wrap a `Seq` in something like this: ```go type...

Ah gotcha! Ok this makes sense. I’ll have a think.

@spy16 I'm going to start working on your proposed implementation. Just a heads up so that we don't duplicate any work 🙂.

@spy16 Ok, so as much as I hate to admit it, I think I've bitten off more than I can chew! I think you probably have a much more complete...

No worries, and thanks for the update! 🙂

Quick note about the `if` expression: I'm unable to use it or to replicate it in Wetware because 1. `parseIf` is not exported (so I can't reuse it in my...

Yup, makes sense! BTW I share your skepticism on the issue of exporting symbols, so 👍. I don’t have a solution in mind either — just wanted to flag the...

@spy16 The latest commit breaks [Wetware's `def` special form](https://github.com/wetware/ww/blob/master/pkg/lang/special.go#L40-L87) since `parens.DefExpr` now depends on `env.analyzer` under the hood. I've given this a bit of thought and haven't been able to...

Just quick brainstorm ... I'm _really_ not sure if the following is a good idea... 😅 Nevertheless, #17 introduces the notion of a goroutine into Parens via the `GoExpr` type,...