Compile with
g++ -lCE3D2 --std=c++11 anim.cpp -o anim
Install CE3D2 before! :D
| ============================= test session starts ============================== | |
| platform linux -- Python 3.4.3, pytest-2.8.7, py-1.4.31, pluggy-0.3.1 | |
| rootdir: /home/mak/dev/coala, inifile: setup.cfg | |
| plugins: timeout-1.0.0, xdist-1.14, doc-0.0.1, env-0.6.0, cov-2.2.1 | |
| collected 549 items | |
| coalib/bears/Bear.py . | |
| coalib/collecting/Importers.py . | |
| coalib/misc/Annotations.py . | |
| coalib/misc/Decorators.py .. |
Compile with
g++ -lCE3D2 --std=c++11 anim.cpp -o anim
Install CE3D2 before! :D
| D:\Users\MAK\Eigene Dokumente\GitHub\coala [Makman2/linter-update ≡ +3 ~0 -0 !]> py.test --cov --cov-report html | |
| ============================= test session starts ============================= | |
| platform win32 -- Python 3.4.3, pytest-2.8.7, py-1.4.31, pluggy-0.3.1 | |
| rootdir: D:\Users\MAK\Eigene Dokumente\GitHub\coala, inifile: setup.cfg | |
| plugins: cov-2.2.1, env-0.6.0, mock-1.1, timeout-1.0.0, xdist-1.14 | |
| collected 549 items / 14 skipped | |
| coalib\bearlib\naming_conventions\__init__.py .... | |
| coalib\bears\Bear.py .. | |
| coalib\bears\requirements\CondaRequirement.py . |
| from random import randint | |
| dices = 2 | |
| def wuerfeln(): | |
| return randint(1, 6) | |
| def fusionieren(a, b): | |
| sortierte_liste = sorted([a, b]) |
| #!/usr/bin/env bash | |
| # How to use: | |
| # bash merge.sh <PR-id> | |
| set -e | |
| git checkout master | |
| git pull |
| from argparse import ArgumentParser, Namespace | |
| import sys | |
| def main(args: Namespace): | |
| pass | |
| def create_argparser() -> ArgumentParser: | |
| parser = ArgumentParser() |
| import Base: iterate, length, eltype | |
| struct Pairwise{IterType} | |
| iter::IterType | |
| end | |
| function iterate(pairwise::Pairwise) | |
| next = iterate(pairwise.iter) | |
| return iterate(pairwise, next) | |
| end |