<FromGitter>
<lebogan> @Blacksmoke16 and all who responded to my raspberry pi madness: I finally got 1.0 to compile on a model 4b with 4gb ram. Why? Why not. After setting al the environment stuff, it works like a charm. I did have to compile llvm-10 for the rpi which was 'painfull' - almost 10 hours! I kept notes if anyone is interested - I consolidated a lot of stuff from online plus community help. A big thanks to everyone ⏎
<FromGitter>
<alexherbo2> `File.match?` accepts a `String` or `Path` as `path`, but `match_single_pattern` only accepts `String`
<FromGitter>
<Blacksmoke16> im assuming you get compile time error if you try and use a `Path`
<FromGitter>
<alexherbo2> yep
<FromGitter>
<alexherbo2> it's how I discovered the bug
<FromGitter>
<Blacksmoke16> prob just need to do `path.to_s`
FromGitter has quit [Remote host closed the connection]
FromGitter has joined #crystal-lang
<FromGitter>
<didactic-drunk> `Def#args.splat` is broken for `def a(*, b = false)`? https://carc.in/#/r/bjhj
lucf117 has joined #crystal-lang
<FromGitter>
<wyhaines> Is it broken, or is it just the way it is that an "*" arg is nameless? ⏎ ⏎ ```code paste, see link``` ⏎ ⏎ You can detect that empty state. Are there any other cases where the name is blank? [https://gitter.im/crystal-lang/crystal?at=60ede8c138da567d829b1f7f]
fifr[m] has quit [Remote host closed the connection]
<FromGitter>
<Blacksmoke16> i think the string representation for `*` is just missing/not correct
<FromGitter>
<Blacksmoke16> even if you have `*args` it just comes up as `args`, so not sure if you'd be able to tell that arg is a splat. so think this could deff be improved a bit
<FromGitter>
<oprypin:matrix.org> > even if you have `*args` it just comes up as `args`, so not sure if you'd be able to tell that arg is a splat. so think this could deff be improved a bit ⏎ ⏎ that just points to it not being meant for this use case
<FromGitter>
<Blacksmoke16> shouldnt you be able to construct the same def with the ASTNode representation of it? Which atm that's not possible