Skip to content
View tokyocplusplus's full-sized avatar
  • @iWishItWasValve
  • somewhere
  • 14:14 (UTC +10:00)

Block or report tokyocplusplus

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tokyocplusplus/README.md

I love graphics programming cuz it's fun

quick look at this cool ass image (pfp resources)

githubProf

This is my page lol, enjoy looking at it

; 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ǃ");
}

PERSONAL/WORK RELATED EMAIL

"[email protected]"

you've reached the end of the page!!

Pinned Loading

  1. tcppGames tcppGames Public

    C++ 1

  2. tcppENGINE tcppENGINE Public

    im working on a special special thingy

    C++ 2

  3. ZenOS ZenOS Public

    my own operating system

    2

  4. zenOS-kernel zenOS-kernel Public

    Forked from zen-kernel/zen-kernel

    Heavily based off of the Linux zen kernel

    C 1

  5. tokyocplusplus tokyocplusplus Public template

    Config files for github prof

    1

  6. Vulkan-Practice Vulkan-Practice Public

    Wish me luck!

    C++