Post AvWEkAV9CRLsoJ2dEW by [email protected] | |
More posts by [email protected] | |
Post #AvTHPRPkq5e3ZXRnJA by [email protected] | |
0 likes, 0 repeats | |
making good progress on my parser, and now i'm thinking of committing some … | |
Post #AvTHPRW8SMkVtKQtFo by [email protected] | |
0 likes, 0 repeats | |
@eniko if you roll a crit this is going to be really funny in 10 years | |
Post #AvTHPZTarhTAZlIyP2 by [email protected] | |
0 likes, 0 repeats | |
@aeva "why the fuck does this ubiquitous language have two logical and ope… | |
Post #AvWEfsnj4EA0ktgiGG by [email protected] | |
0 likes, 0 repeats | |
in less trolling news i'm really liking the way if/while/etc blocks work in… | |
Post #AvWEfsuodrpd6t0NJQ by [email protected] | |
0 likes, 0 repeats | |
not sure what i wanna do with for loops 🙃 C style for (;;) or Lua style for … | |
Post #AvWEft3g6uv9YN9S7s by [email protected] | |
0 likes, 0 repeats | |
maybe i will just only have while loops for now so i have time to think about i… | |
Post #AvWEftAPhsJBtGIpcm by [email protected] | |
0 likes, 0 repeats | |
Trying to think of what's left for my parser before I can start writing and… | |
Post #AvWEftGRLT84Bx7e1A by [email protected] | |
0 likes, 0 repeats | |
@eniko im not sure what you've done, but a program made only of integers so… | |
Post #AvWEftMSz3wwUdwSPY by [email protected] | |
0 likes, 0 repeats | |
@efi a program made only of integers is basically just C | |
Post #AvWEftSqbL3OoQvYMC by [email protected] | |
0 likes, 0 repeats | |
@eniko what about symbols and keywords? | |
Post #AvWEftZEDc9r8DueIq by [email protected] | |
0 likes, 0 repeats | |
@efi it has symbols and keywords? The only *type* it knows is integer | |
Post #AvWEgTSOmU5MRSzhei by [email protected] | |
0 likes, 0 repeats | |
@eniko see, when you're talking about the parser I think token types from t… | |
Post #AvWEkAV9CRLsoJ2dEW by [email protected] | |
0 likes, 0 repeats | |
@eniko Everything depends on what your end goal is. Once you have decided what … | |
Post #AvWEkAaorLtB5thA4e by [email protected] | |
0 likes, 0 repeats | |
@sol_hsa end goal or what I want right now, cause those are not the same >_&… | |
Post #AvWEkAgqUwi3OaVyT2 by [email protected] | |
0 likes, 0 repeats | |
@eniko well, "no, but wouldn't it be *fun*" is a completely valid… | |
Post #AvWEkAmABAxlf50Dku by [email protected] | |
0 likes, 0 repeats | |
@sol_hsa right now I just wanna try to make some actual running programs rather… | |
Post #AvWEkPb14txXcqu1xo by [email protected] | |
0 likes, 0 repeats | |
@eniko then make the minimal feature set, use it for a while, then implement th… | |
Post #AvWEkmtaS1Tpt6lgbQ by [email protected] | |
0 likes, 0 repeats | |
@eniko You know, every day I say to myself, "the world doesn't have en… | |
Post #AvWEkn1Nz1icHIPul6 by [email protected] | |
0 likes, 0 repeats | |
@tekhedd so true | |
Post #AvWElPr7b7gIikulfs by [email protected] | |
0 likes, 0 repeats | |
@enikoIf you're already treating a {..} block also as an expression, as per… | |
Post #AvWElPyZ9RdV5qOiHI by [email protected] | |
0 likes, 0 repeats | |
@robert oh I don't have anything as advanced as block expressions | |
Post #AvWEldacXGnhJdImtk by [email protected] | |
0 likes, 0 repeats | |
@eniko Elixir sorta does this!and and or strictly work with boolean arguments (… | |
Post #AvWEldh09Xu9dQHsqO by [email protected] | |
0 likes, 0 repeats | |
@manchmalscott huh, that's interesting! Wonder why they made that decision | |
Post #AvWEmlENbwbRIvR0wy by [email protected] | |
0 likes, 0 repeats | |
@eniko So this is where C++ converges on Python over time.C++'s iterators a… | |
Post #AvWEmlL7CtzTdoaORs by [email protected] | |
0 likes, 0 repeats | |
@eniko ... so you get to syntax that is effectively Pythonesque, in that you ca… | |
Post #AvWEmlRqnrNVyhjlwm by [email protected] | |
0 likes, 0 repeats | |
@jens i mean the main reason i don't wanna follow this pattern is because i… | |
Post #AvWEmlXsRSCOHOYaLA by [email protected] | |
0 likes, 0 repeats | |
@eniko Not really; I just saw the other thread on that.You don't have to al… | |
Post #AvWEmldu531Ga5NOjY by [email protected] | |
0 likes, 0 repeats | |
@jens that's fair i suppose, i can do `for i in range(from, to, step)` with… | |
Post #AvWEmlzAny27e3KNt2 by [email protected] | |
0 likes, 0 repeats | |
@eniko Like, pointers have a "next" state (need to track the size of … | |
Post #AvWEmmJjZWTofownw0 by [email protected] | |
0 likes, 0 repeats | |
@eniko ... over something that can have a "next"/"incremented&qu… | |
Post #AvWEnOYbOgx5GwCDNw by [email protected] | |
0 likes, 0 repeats | |
@eniko For example. |