Vanilla Queen - Golang language extension for solo unsafe deep dives

 /* 

LANGUAGE DESIGN by AUTHOR

CALLED "PLY"

Someone make the run() and diving(I) functions run in Golang;

HENCE, ITS A GOLANG DERIVED LANGUAGE.


IT IS ABOUT DEEP DIVING THE CPU CALLS

AND TRACING THEM BACK TO THE SURFACE 

TO SEE WHAT WE'VE GOT.


TREASURE OR NOT?

Maybe a VANILLA QUEEN?

;

:_


*/



// DEFINING WATER

define c+ as up

define c- as down

define level as c(now())

define wave as {

    wave(0) as surface,

    wave(n, surface) as wave(level, {c+,c-})

};


// SET X, Y

assign x = me

assign y = me

x(me) = me(x)

y(me) = me( x(level(y)) )


// GOT IT

// NOW LETS DIVE TO THE BOTTOM AND COME up


run()

{

    define I as me;

    I go(diving(wave(0), wave(0)));

    return( go( diving(c+)));


}


// DEEP DIVING ALONE

func diving(I) {

    I := wave(n)

}


// NO RETURN VALUES NEEDED.

// DIG UP ANYTHING FROM RAM

// UNSAFE BUT SAFE = RISKY


/* AUTHOR:

HANS KOREVAAR

*/

// P.S. One word of WARNING: Do not resume this algorithm after crashing the OS; call it again.

Comments