About 10,000,000 results
Open links in new tab
  1. Where does 'Hello world' come from? - Stack Overflow

    ' hello, world ' is usually the first example for any programming language. I've always wondered where this sentence came from and where was it first used. I've once been told that it was the first sentence …

  2. Hello World in Python - Stack Overflow

    Jul 3, 2009 · First time I see somebody asking a question about how to implement "Hello World" in a language. Makes you wonder what that says about the language if that's causing people trouble …

  3. pharo - How to run an Hello world in smalltalk on Windows using …

    Apr 27, 2025 · 'Hello world' Change 'Hello world' to something like 'Hello' , String space , 'world' to convince yourself that this actually evaluates a Smalltalk expression. Other Smalltalk systems such …

  4. How do I create a ruby Hello world? - Stack Overflow

    Apr 1, 2009 · I know in PHP you have to intrepret a page like index.php, but in Ruby how does it work? I don't know what is the Ruby extension like index.php for PHP. Could you help me?

  5. Hello, World! in Brainfuck - Stack Overflow

    Dec 26, 2016 · The [] characters indicate a loop. The 10 + s before it indicate how many times the loop will run. This becomes clear when you understand what the various commands mean, and the <<<< …

  6. How to write hello world in assembly under Windows?

    I wanted to write something basic in assembly under Windows. I'm using NASM, but I can't get anything working. How do I write and compile a hello world program without the help of C functions on Wi...

  7. How does the Brainfuck Hello World actually work?

    How does the Brainfuck Hello World actually work? Asked 12 years, 6 months ago Modified 7 years, 4 months ago Viewed 99k times

  8. assembly - Print hello in 64-bit masm - Stack Overflow

    Jan 11, 2022 · I want to write a program to show hello in 64-bit masm. I use VS code with ml64.exe and gcc. The following is what I write: ;; file name: hello.asm printf proto .data messenge dq "hello", 0 …

  9. How to write a Hello World in C - Stack Overflow

    Aug 23, 2012 · gcc hello.c -o hello && hello (Replace the 'hello.c' with your filename, and 'hello' with the name you want to put with your .exe file) Remember My computer is Windows. And this compile …

  10. c - Can you explain this 'Hello world' program? - Stack Overflow

    Jun 28, 2009 · printf("Hello, world!\n"); This line of code calls the standard input/output function printf that is part of the C Standard Library. The function printf causes output to be displayed on the terminal; it …