컴퓨터/프로그래밍5 Hello, World! Knowing how to write Hello, World! in a programming language is the first step to learn how to code. Some of Hello World! codes in languages I know of a bit (no syntax hightlight): ;;; bash echo Hello, World! ;;; C, Kernighan and Ritchie, The C Programming Language, 2nd edition: #include int main() { printf(“Hello, World!\n”); } ;;; D programming language: import std.stdio; void main() { writeln.. 2015. 4. 29. 이전 1 2 다음