When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| # !!!!! | |
| # VEJA A VERSÃO SIMPLIFICADA ABAIXO | |
| # !!!!! | |
| # Change these variables as necessary. | |
| MAIN_PACKAGE_PATH := ./cmd/example | |
| BINARY_NAME := example | |
| # ==================================================================================== # | |
| # HELPERS |
| def make_adder(): | |
| grand_total = 0 | |
| def adder(to_add): | |
| print "Grand total moved from: %s" % grand_total | |
| grand_total += to_add | |
| print "To: %s \n" % grand_total | |
| return grand_total | |
| return adder | |
| adder = make_adder() |
| #include <setjmp.h> | |
| #include <stdio.h> | |
| int | |
| main(int argc, char *argv[]) | |
| { | |
| jmp_buf jump; | |
| int status = setjmp(jump); | |
| puts("yes"); | |
| longjmp(jump, status); |