• Fur Affinity Forums are governed by Fur Affinity's Rules and Policies. Links and additional information can be accessed in the Site Information Forum.

Open Chat

Martin2W

Tombstone The Fierce Sergal
Living airplanes/machines.

Artistic creativity ftw, eh? :p
All heil mick39. Heil heil.
maxresdefault.jpg
 

Honey Lavender;

Worse than a grounded pilot: a grounded pegasus
All heil mick39. Heil heil.
Careful, you might rub some fur the wrong way with that one... That is Das Fuhror- No es bueno, senor.

"Hail Hydra!"
 

Honey Lavender;

Worse than a grounded pilot: a grounded pegasus
Well... I won't say it's a fetish but... Transformers?


:eek:
Hey, mine was a movie quote... *licks chest fur in embarrassment*
 

Reti

normal aberration
No I mean actual living planes not transformers... I saw it recently ish
You've gone too deep in the internet for me...
There is no coming back...
You're doomed...

Can't wait for this shift to be over. Works really slow today.
I'm... Supposed to work right now but I haven't been able to write a single line of code since an hour...

Do someone know how to write an interpreter with Racket?

*wind noises*
 

Selly

Strange Creature


I'm... Supposed to work right now but I haven't been able to write a single line of code since an hour...

Do someone know how to write an interpreter with Racket?

*wind noises*

I used to know some programming language like half a decade ago, just got a boring data entry job now.
 

Honey Lavender;

Worse than a grounded pilot: a grounded pegasus
You've gone too deep in the internet for me...
There is no coming back...
You're doomed...


I'm... Supposed to work right now but I haven't been able to write a single line of code since an hour...

Do someone know how to write an interpreter with Racket?

*wind noises*
Code:
import java.lang.*;
import java.util.*;

public static void Main(String [] Args) {
     System.out.println("I haven't the foggiest");
}
 
Last edited:

Reti

normal aberration
I used to know some programming language like half a decade ago, just got a boring data entry job now.
That's... Quite sad... You wanted to write programs or are you from another domain?

Code:
import java.lang.*;
import java.util.*;

public static void Main(String [] Args) {
     System.out.println("I'm stuck beyond belief");
}

You want an instance of "racket"?
here it is :

Code:
(define (num-op [op : (number number -> number)]
                [l : Value] [r : Value]) : Value
  (if (and (numV? l) (numV? r))
      (numV (op (numV-n l) (numV-n r)))
      (error 'interp "not a number")))

(define (num+ [l : Value] [r : Value]) : Value
  (num-op + l r))
And this code is supposed to work alone... (it's a sum)

So i'm really stuck right now...
I want to go back to Java and object oriented programming. ;_;
 

Honey Lavender;

Worse than a grounded pilot: a grounded pegasus
That's... Quite sad... You wanted to write programs or are you from another domain?



You want an instance of "racket"?
here it is :

Code:
(define (num-op [op : (number number -> number)]
                [l : Value] [r : Value]) : Value
  (if (and (numV? l) (numV? r))
      (numV (op (numV-n l) (numV-n r)))
      (error 'interp "not a number")))

(define (num+ [l : Value] [r : Value]) : Value
  (num-op + l r))
And his code is supposed to work alone... (it's a sum)

So i'm really stuck right now...
Have fun, I barely made it through a semester of Java, and I'm currently failing at C...
Code:
import java.lang.*;
import java.util*;

public static void Main(String[] Args) {
     System.out.println("Yeah, no.\nI'm not the person to ask.\n\nSorry!");
}
 

Serin

No longer active.
That's... Quite sad... You wanted to write programs or are you from another domain?



You want an instance of "racket"?
here it is :

Code:
(define (num-op [op : (number number -> number)]
                [l : Value] [r : Value]) : Value
  (if (and (numV? l) (numV? r))
      (numV (op (numV-n l) (numV-n r)))
      (error 'interp "not a number")))

(define (num+ [l : Value] [r : Value]) : Value
  (num-op + l r))
And this code is supposed to work alone... (it's a sum)

So i'm really stuck right now...
I want to go back to Java and object oriented programming. ;_;
Coding is fun. Until you get stuck
 

Reti

normal aberration
I wanted to get into game coding but my university was a joke, long story short
I feel like mine too... We're studying computers in rooms were they are not, and they ask us to bring our personnal computers... Mine is quite heavy sooo...

Have fun, I barely made it through a semester of Java, and I'm currently failing at C...
Code:
import java.lang.*;
import java.util*;

public static void Main(String[] Args) {
     System.out.println("Yeah, no.\nI'm not the person to ask.\n\nSorry!");
}
C is cool!... But good luck with malloc =p

Coding is fun. Until you get stuck
I can only agree. It's been a week now since I'm on this program.
 

Serin

No longer active.
I feel like mine too... We're studying computers in rooms were they are not, and they ask us to bring our personnal computers... Mine is quite heavy sooo...


C is cool!... But good luck with malloc =p


I can only agree. It's been a week now since I'm on this program.
Yap. I think I tried Java before. But anyways, I did it on an online coding school. I would've paid for it too, but I don't have a computer to access it and from what I remember, it costs a lot. Lol
 
Top