Ashish Bailkeri

Results 10 comments of Ashish Bailkeri

I just wanted to let you know that the React function `componentDidMount()` is deprecated. The version I pushing uses the new `useEffect` method to effectively accomplish the same task. Please...

I submitted a pull request but I guess he has not updated it. Here is the link to the complete remodeled version: https://github.com/aboss123/react-native-keyboard-listener/blob/patch-1/index.js

Hi Joe! Thank you for your question. This language is meant to be different than languages like Rust, C++, and C. Namely, it's code generation is specifically targeted for application...

> Sorry mate but what do you mean by manipulation? What I mean is control. Pointer arithmetic trickery, and other valid memory manipulation that cannot be detected by the borrow...

For your information, there is a rough language specification [here](https://github.com/The-NextGen-Project/jet/blob/main/LANG.md). > I see mate, but then I thought that you can use `unsafe` Rust when needed, which gives you as...

@Joe23232 > When you say closer to low-level interaction which language are you comparing Jet to? Specifically Nim. Sometimes certain functions and data structures made in a certain way can...

> Do you plan to integrate a C library (which is for Android support) into Jet so it can easily be compiled for Android? If so which library would you...

@Joe23232 > Are there any third party frameworks for C which generates your code to Android compatible? If so we could use that with your language? I'm not sure of...

@Joe23232 @Chinay-Domitrix It makes the language a bit different. But are you suggesting that I use `fn` over the current style because you think it fits with the rest of...

@Chinay-Domitrix Perhaps, it is better to have maybe what Jai and Odin have, which is `::` differentiating these structures. For example: ```zig foo :: (param1: i32, param2: i64) { //...