Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Welcome to Code Forum!
Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.
Okay so I am trying to run/debug some libraries on Ubuntu. I can't get VS Code. I have code in Ruby (I can debug via "ruby name.rb"), Kotlin, Swift, and Javascript. I found some online compilers but there are limits to those and terms. I could probably just HTML page a JavaScript and debug that...
Hey,
i think (i’m pretty sure) you can transpile C++ to haxe. Is there a way to transpile C to C++ or C drirectly to haxe?
Same question for Rust: is there a way to transpile rust to haxe?
Thx in advance Lenn
Hello, everyone!
What value will x have, after the following code gets executed?
char n1 = 0xF1;
char n2 = 0x1F;
char x = 0;
x = n1 & n2;
I think it's 0, but I'm not exactly sure.
What do you guys think?