• pranaless@beehaw.org
      link
      fedilink
      arrow-up
      31
      ·
      8 months ago
      use std::process::Command;
      
      fn main() {
          Command::new("sh")
              .arg("-c")
              .arg("echo Hello World!")
              .spawn()
              .unwrap();
      }
      

      Like this?

      • 30p87@feddit.de
        link
        fedilink
        arrow-up
        10
        ·
        8 months ago

        No, more like

        use std::process::Command; fn main() { Command::new("sh").arg("-c").arg("echo Hello World!").spawn().unwrap(); }
        

        .
        Just a little bit shorter, as it seems /s

          • 30p87@feddit.de
            link
            fedilink
            arrow-up
            6
            ·
            8 months ago

            I did too. Multiple times in fact, I had to look at the other Rust code!

          • pranaless@beehaw.org
            link
            fedilink
            arrow-up
            1
            ·
            8 months ago

            Yes and no. While coreutils does provide an echo binary, shells also have a built-in for optimisation purposes.

            At first I had the code calling the binary directly, but then changed it to spawning a shell (and so using the builtin). It’s very cursed either way.

  • r00ty@kbin.life
    link
    fedilink
    arrow-up
    19
    ·
    8 months ago

    Or, you could just go the whole hog. Create your own simple CPU emulator, design a basic 8bitesque CPU, give it an output port that is the console, and load up some basic ASM to cycle through Hello World to the console port.

  • umbraroze@kbin.social
    link
    fedilink
    arrow-up
    19
    ·
    8 months ago

    Oh you fancy PC people and your fancy syscall instruction.

    I still don’t know why I could remember jsr $ab1e. I didn’t even write that much assembly.

  • Speiser0@feddit.de
    link
    fedilink
    arrow-up
    14
    arrow-down
    1
    ·
    edit-2
    8 months ago

    Definitely left. Right one won’t be optimized. (And there are so many some mistakes in your inline asm…)

      • Speiser0@feddit.de
        link
        fedilink
        arrow-up
        5
        ·
        8 months ago

        Mostly the missing listing of clobbered registers. Other than that it’s mostly just that you’re doing useless things, like manually putting the stuff into the registers instead of letting the compiler do it, and the useless push and pop. And the loop is obviously not needed and would hurt performance if you do every write like that.

        asm!(
        "syscall",
        in("rax") 1,
        in("rdi") 1,
        in("rsi") text_ptr,
        in("rdx") text_size,
        
        )
        

        (“so many” was inappropriate, sorry.)

  • DNOS@reddthat.com
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    8 months ago

    Ec Emm this side is the best one …

    ++++++++[< +++++++++>-]<. ++++[<+++++++>-]<+. +++++++… +++.

    ++++++[<+++++++>-]<++. ------------. ++++++[<+++++++++>-]<+. <. +++. ------. --------.

    ++++[<++++++++>-]<+.

  • raubarno@beehaw.org
    link
    fedilink
    arrow-up
    4
    ·
    8 months ago

    Why do you call write() for every char? You can always just pass a pointer with its length.

  • Arthur Besse@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    8 months ago

    dc <<<'10435358689859 70511561 11297399 23 5 3 2 ******P'

    note: lemmy’s “smart quotes” vs its input sanitization required me to code-format the second half of that line (and not the first half) to make it copy+paste runnable.