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.

SignUp Now!

code execution

  1. JosiahMaybe

    Ubuntu code testing/debugging maybe

    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...
  2. dev.lenn

    C & Rust --> haxe transpilation

    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
  3. S

    Code execution

    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?
Back
Top Bottom