; tokyocplusplus
section .data
hello: db 'Hello!! Im a graphics programmer and this is my github page:D',10
helloLen: equ $-hello
section .text
global _start
_start:
mov eax,4
mov ebx,1
mov ecx,hello
mov edx,helloLen
int 80h
mov eax,1
mov ebx,0
int 80h;
// tokyocplusplus
#include<iostream>
int main()
{
std::cout << "Hello!! I'm a graphics programmer and this is my github page!";
return 0;
}
fn main() {
println!("Hello!! I'm a graphics programmer and this is my github page:D");
}
// tokyocplusplus
#include<stdio.h>
int main(void)
{
printf("Hello!! I'm a graphics programmer and this is my github page!";
}
#version 450 core
void main()
{
DrawString("Helloǃǃ I'm a graphics programmer and this my github pageǃ");
}