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 time | |
| import math | |
| import operator | |
| from inspect import signature | |
| import random | |
| class func: | |
| class msg: | |
| ok = True | |
| error = False |
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
| """ | |
| A simple language made for notetaking and data storage in the form of bullets. | |
| """ | |
| from pprint import pprint | |
| import pickle | |
| import os.path | |
| def linstore(code: str) -> list: |
NewerOlder