Pinned Loading
-
-
Brainfuck-Interpreter
Brainfuck-Interpreter PublicInterpreter for Brainfuck programming language
Rust 1
-
-
Some functions' custom implementatio...
Some functions' custom implementations in scheme 1(define (my-map f l)
2(if (eq? l '())
3'()
4(cons (f (car l)) (my-map f (cdr l)))))
5 -
Factorize (n * x) + (n * y) to becom...
Factorize (n * x) + (n * y) to become n * (x + y) and multiply_out to do reverse. 1type expr =
2| Plus of expr * expr
3| Minus of expr * expr
4| Times of expr * expr
5| Divide of expr * expr
-
Manual implementation of virtual dis...
Manual implementation of virtual dispatch and virtual tables in C. 1#include <stdlib.h>
2#include <stdio.h>
34typedef struct Animal {
5void (*say)(void *this);
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.