Message from @Deleted User

Discord ID: 391754356363362305


2017-12-17 00:47:52 UTC  
2017-12-17 00:48:01 UTC  

```MIPS
la $s5, ans6
addi $t8, $zero, 3
addi $t9, $zero, 2
div $t1, $t8
#addi $s5, $HI, 0
mfhi $s5
add $s5, $s5, $t7
mult $s5, $t8
#addi $s5, $LO, 0
mflo $s5
div $s5, $t5
#addi $s5, $LO, 0
mflo $s5
sub $s5, $t3, $s5
la $a0, answer6
li $v0, 4
syscall
la $a0, 0($s5)
li $v0, 1
syscall
la $a0, space
li $v0, 4
syscall
```

2017-12-17 00:48:05 UTC  

wow

2017-12-17 00:48:06 UTC  

I put this in a #nsfw channel

https://cdn.discordapp.com/attachments/372508286529961996/391753387714019338/unknown.png

2017-12-17 00:48:07 UTC  

Or just join jdm's other discord

2017-12-17 00:48:11 UTC  

that fggot ha his own?

2017-12-17 00:48:41 UTC  

He has a youtube channel too

2017-12-17 00:48:44 UTC  
2017-12-17 00:49:02 UTC  

Getting back on topic

2017-12-17 00:49:04 UTC  

lol

2017-12-17 00:49:25 UTC  

fag only comes here to complain about people talking in <#377519392956874752>

2017-12-17 00:49:42 UTC  

lol

2017-12-17 00:49:46 UTC  

like JDM

2017-12-17 00:50:05 UTC  

any of you guys ever had to program in assembly?

2017-12-17 00:50:14 UTC  

Yes.

2017-12-17 00:50:33 UTC  

that was most cancer

2017-12-17 00:51:32 UTC  

Worst assembly I had to deal with was CUDA/PTX asm.

2017-12-17 00:51:42 UTC  

lol

2017-12-17 00:51:47 UTC  

Had to literally edit the assembly by hand because the compiler was generating wrong code.

2017-12-17 00:51:57 UTC  

wow

2017-12-17 00:52:01 UTC  

that sucks

2017-12-17 00:52:18 UTC  

Back in the CUDA 1.0 days.

2017-12-17 00:52:25 UTC  

```Java
java.lang.NullPointerException
```
FUUUUUUCK OOOOOOOOOOOOOOFFFFFFFFFFFFFFFFFFFFFF

2017-12-17 00:52:29 UTC  

AAAAAAHHHHHHHHHHHHH

2017-12-17 00:52:31 UTC  

lol

2017-12-17 00:52:40 UTC  

post your code dude

2017-12-17 00:52:59 UTC  

Had to translate this

2017-12-17 00:53:01 UTC  

debugg session

2017-12-17 00:53:05 UTC  

Too much to post

2017-12-17 00:53:15 UTC  

```CPP
// The function1 is a recursive procedure defined by:
// function1(n) = 2*n if n <= 4
// = n*function1(n-2) + function1(n-3) + n otherwise.

int function1(int n)
{

if (n <= 4)
{
return 2*n;
}
else
{
int comp = n*function1(n-2) + function1(n-3) + n;

return comp;
}
}

// The main calls function1 by entering an integer given by a user.
void main()
{
int ans, n;

printf("Enter an integer:\n");

// read an integer from user and store it in "n"
scanf("%d", &n);

ans = function1(n);

// print out the solution computed by function 1
printf("The solution is: %d\n", ans);

return;
}
```

2017-12-17 00:53:16 UTC  

I know what's wrong (I think)

2017-12-17 00:53:49 UTC  

I also lost the backup code that was working

2017-12-17 00:53:52 UTC  

There's no `void main` in C++, you drunk?

2017-12-17 00:54:00 UTC  

lmao

2017-12-17 00:54:07 UTC  

https://cdn.discordapp.com/attachments/372508286529961996/391754901232943106/1513460349662.png

2017-12-17 00:54:17 UTC  

you sure about htat?

2017-12-17 00:54:20 UTC  

that

2017-12-17 00:54:25 UTC  

Yes, I'm sure.

2017-12-17 00:54:37 UTC  

I played a language lawyer on the internet, in the past.

2017-12-17 00:55:03 UTC  

cuz void main worked for me before