Lynn

Results 37 issues of Lynn

Maybe I'm doing something wrong, but the example didn't compile for me until I added a `use crate::reverse`: ``` PS C:\code\playground> cargo test Compiling playground v0.1.0 (C:\code\playground) --> src\main.rs:17:19 |...

Currently https://docs.rs/quickcheck doesn't say much about what this crate does. I think having most info in the README is OK, but probably there should be some info in the crate...

When using this userstyle for Zbalermorna fonts in Discord: ```css @import url(//jackhumbert.github.io/lojban-orthographies/discord.css); ``` The hiragana characters い, う, か, し, の, ん disappear for me everywhere in Discord. Some screenshots...

The note under [table 17](http://www.ithkuil.net/06_verbs_2.html#Sec6o2) on ithkuil.net says that Ve is **ë** when only a Valence (CL in slot A) is specified. This epenthetic vowel is not supported by the...

There are really two steps here: 1. Get the project to a point where `chibicc-uxn.exe` (running in Windows/Linux/etc) can compile the codebase to `cc.rom`, and this `cc.rom` can compile something...

Right now something like ```c #include void main(void) { int n = asm("#1234"); } ``` compiles to ```tal |0100 LIT2r 0000 main_ POP2r BRK ( bss ) ( data )...

If `x` and `y` are structs of the same type, `y = x` should copy all the fields, maybe using something like `memcpy`. A test that should pass: ```c assert(9,...

From https://github.com/typst/typst/issues/1330. [CitationStyle::citation for Alphanumeric](https://github.com/typst/hayagriva/blob/a4150683894a51cc57d704c8a81ffac3e5a9532a/src/style/mod.rs#L1077-L1125 ) doesn't inspect `atomic.supplement` inside the `for atomic in parts` loop. Maybe it simply needs something like: ```diff + if let Some(supplement) = atomic.supplement {...