Home

Gabriel's Blog

<맨 위로>

Hello, world!

개요

hello world!를 출력해봅시다


파이썬

print("hello world!")

C

#include<stdio.h>

int main(){
    printf("Hello world!");
    return 0;
}

C++

#include<iostream>


int main(){
    std::cout<<"Hello world!";
    return 0;
}

BrainF**k

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

본 게시글은 Mark Text의 테스트를 위해 작성되었습니다.

그럼 다음에,
Gabriel-Dropout at 10:03

scribble