Skip to content

Instantly share code, notes, and snippets.

@soggychips
soggychips / readme.txt
Last active May 3, 2022 21:32
Definitely Not Blockchain (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
#! /usr/bin/python2.7
from random import seed, randint
from re import findall, match
def parse_input(_input):
_input = _input.lower()
# quit if requested
if findall('exit|quit', _input.lower()):
import sys