Unipants' Golfing Language (TODO: choose a better name) is a language inspired by Shifty Eyes.
i- input an integer into the stack
Unipants' Golfing Language (TODO: choose a better name) is a language inspired by Shifty Eyes.
i - input an integer into the stackAn esoteric language inspired by Seriously.
Instructions are single words, either space or newline separated.
| #version 3.7; | |
| global_settings{ assumed_gamma 1.0 } | |
| #default{ finish{ ambient 0.1 diffuse 0.9 }} | |
| //-------------------------------------------------------------------------- | |
| #include "colors.inc" | |
| #include "textures.inc" | |
| #include "glass.inc" | |
| #include "metals.inc" | |
| #include "golds.inc" | |
| #include "stones.inc" |
| #version 3.7; | |
| global_settings{ assumed_gamma 1.0 } | |
| #default{ finish{ ambient 0.1 diffuse 0.9 }} | |
| //-------------------------------------------------------------------------- | |
| #include "colors.inc" | |
| #include "textures.inc" | |
| #include "glass.inc" | |
| #include "metals.inc" | |
| #include "golds.inc" | |
| #include "stones.inc" |
| #version 3.7; | |
| global_settings{ assumed_gamma 1.0 } | |
| #default{ finish{ ambient 0.1 diffuse 0.9 }} | |
| //-------------------------------------------------------------------------- | |
| #include "colors.inc" | |
| #include "textures.inc" | |
| #include "glass.inc" | |
| #include "metals.inc" | |
| #include "golds.inc" | |
| #include "stones.inc" |
| """ | |
| Pfxcalc | |
| Programmed by zyabin101 | |
| This code is hereby released into the public domain | |
| """ | |
| import ast | |
| def lit_input(prompt): | |
| """ |
| /** | |
| *** blum_blum_shub.js *** | |
| An implementation of the Blum Blum Shub pseudorandom number generator proposed | |
| in 1986 by Lenore Blum, Manuel Blum and Michael Shub that is derived from | |
| Michael O. Rabin's oblivious transfer mapping. | |
| Blum Blum Shub takes the form | |
| 2 |
| stack = [] | |
| A = 10 | |
| B = 11 | |
| C = 12 | |
| D = 13 | |
| E = 14 | |
| F = 15 | |
| G = 16 | |
| H = 17 |
| /** | |
| A multiply-with-carry random number generator in JavaScript in one line. Returns an uniform value in [0, 1). | |
| zlib License | |
| (C) 2016 Andrew Zyabin | |
| This software is provided 'as-is', without any express or implied | |
| warranty. In no event will the authors be held liable for any damages |