- Infix?
- Whitespace-aware, but not required (implicit {})
- Static single assignment
| class g: | |
| def __init__(self): | |
| self.s = "f" | |
| def __call__(self, c=None): | |
| if c is None: | |
| self.s += "o" | |
| return self | |
| else: | |
| return self.s+c | |
| def f(c=None): |
| usage = chunk(redis_cli('hgetall', key+':'+date), 2) | |
| usage = map(lambda x: x[:1]+(int(x[1]),)+x[2:], usage) | |
| usage = sorted(usage, key=lambda x: x[1], reverse=True) |
| module StaleUpdater exposing (..) | |
| type alias StaleUpdater = | |
| { stale : Bool | |
| , updating : Bool | |
| } | |
| new : StaleUpdater |
| package main | |
| import ( | |
| "bytes" | |
| "crypto/tls" | |
| "database/sql" | |
| "encoding/hex" | |
| "flag" | |
| "html/template" | |
| "io" |
| def alternates_even_odd(x): | |
| x = iter(x) | |
| try: | |
| while True: | |
| if next(x)%2: | |
| return False | |
| if not next(x)%2: | |
| return False | |
| except StopIteration: | |
| return True |
| mkdir ~/whatToDownload ~/torrentfs | |
| someServiceThatLetsYouModifyFolder ~/whatToDownload & | |
| torrentfs ~/whatToDownload ~/torrentfs & | |
| httpFileServer ~/torrentfs |
| package append | |
| import "testing" | |
| var result []T | |
| const size = 10000 | |
| type T int |
| #!/usr/bin/env python3 | |
| import argparse | |
| import http.cookies | |
| import io | |
| import json | |
| import pprint | |
| import urllib.request | |
| import webbrowser |
| import io | |
| class StringIteratorIO(io.TextIOBase): | |
| def __init__(self, iter): | |
| self._iter = iter | |
| self._left = '' | |
| def readable(self): | |
| return True |