- Joined
- Sep 23, 2018
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
This bear is about to make you his bitch.
ebin :DDDDD
bear computerbear computer
10 PRINT "bear computer"
20 GOTO 10
RUN
Code:10 PRINT "bear computer" 20 GOTO 10 RUN
#include <stdio.h>
int main(){
while(1)
printf("bear computer\n");
return 0;
}
C:#include <stdio.h> int main(){ while(1) printf("bear computer\n"); return 0; }
b = str("bear computer")
while True:
print (b)
[bits 16]
[org 0x7c00]
bear:
mov si, msg
mov ah, 0x0e
computer:
lodsb
cmp al, 0
je bear
int 0x10
jmp computer
msg: db "bear computer ",0
times 510-($-$$) db 0
dw 0xaa55
Python:b = str("bear computer") while True: print (b)
Code:[bits 16] [org 0x7c00] bear: mov si, msg mov ah, 0x0e computer: lodsb cmp al, 0 je bear int 0x10 jmp computer msg: db "bear computer ",0 times 510-($-$$) db 0 dw 0xaa55