This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
// OwO whats this vewsion 6.9.?c ~ :3 | |
// I h-hope you l-like it... | |
let stutterChance = 0.1 | |
let prefixChance = 0.05 | |
let suffixChance = 0.15 | |
let words = { | |
love: 'wuv', | |
mr: 'mistuh', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import math | |
import sys | |
CHECKPOINT_RADIUS = 600 | |
POD_RADIUS = 400 | |
MAX_ANGLE_DIFF = 0.31415 | |
FRICTION = 0.85 | |
MAX_THRUST = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package goddrinksjava; | |
/** | |
* The program GodDrinksJava implements an application that | |
* creates an empty simulated world with no meaning orpurpose. | |
* | |
* @author momocashew | |
*/ | |
public class GodDrinksJava { | |
public static void main(String[] args) { |