Sargun Vohra
Sargun Vohra
I no longer need this, but the intention was for an output that tells me whether the issue was created or it was simply updated, not just the id/url of...
Maybe I missed it but I don't see a new output there?
#120 looks great, thank you!
I'm not really familiar with the capabilities of macros in Rust, but the only real solution I can think of would probably have a macro like `check!` that only prints...
Ah, I'm just using [Bevy](https://bevyengine.org), but I'm not sure if the preprocessor is part of Bevy or a dependency of Bevy.
Actually it appears to be a feature of Bevy: https://github.com/bevyengine/bevy/pull/3137
I've tried that project, but they don't provide binaries for my platform (ARM MacOS) and my attempt to build one from source failed. The build error is probably solvable but...
That still returns null. `(ImageView) findViewById(android.support.v7.appcompat.R.id.home);`
Sounds like you want to parse something like `echo hello && echo world | cat`? You'd do something like: ```kotlin val op = andAnd or pipe val goal = singleCommand...
On second reading, if you mean parsing something like: ```bash a && b && c a | b | c ``` but **not** something like ```bash a && b |...