Title: [Python] 3ds_underwater Author: waterapple Pastebin link: http://pastebin.com/2q9XRABK First Edit: Sunday 2nd of June 2013 09:07:54 AM CDT Last Edit: Sunday 2nd of June 2013 09:07:54 AM CDT #------------------------------------------------------------------------------- # Name:        3ds_under_the_sea # Purpose:      Emulate the functionality of the 3ds games console underwater. # # Author:      new # # Created:     02/06/2013 # Copyright:   (c) new 2013 # Licence:     #------------------------------------------------------------------------------- #!/usr/bin/env python     MARIO_WORLD = "Super mario world 3ds" HALO_5 = "Ported version of Halo 5: Cortanna has boobies that shoot lasers" DONKEY_KONG = "Donkey kong 3ds"     def emulate(game):     while True:         # Instruction-Identical emulation for water damage         pass       def main():     print "loading emulator..."     emulate(MARIO_WORLD)   if __name__ == '__main__':     main()