Skip to content

Instantly share code, notes, and snippets.

@AramRafeq
Created April 14, 2020 14:50
Show Gist options
  • Save AramRafeq/026138dcabf18fad5e6400badbcd5889 to your computer and use it in GitHub Desktop.
Save AramRafeq/026138dcabf18fad5e6400badbcd5889 to your computer and use it in GitHub Desktop.
what is programming language https://devstree.io/programming-language/
.model small
.stack
.data
message db "Hello DevelopersTree Fans!". "\$"
.code
main proc
mov ax,seg message
mov ds,ax
mov ah,09
lea dx,message
int 21h
mov ax,4c00h
int 21h
main endp
end main
Class HelloWorld
{
public static void main(String [] args)
{
System.out.println("Hello DevelopersTree Fans!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment