Skip to content

Instantly share code, notes, and snippets.

View ManDeJan's full-sized avatar
blep blop

Jan Halsema ManDeJan

blep blop
View GitHub Profile
@ManDeJan
ManDeJan / better_python3
Created June 24, 2020 20:00 — forked from cjsmeele/better_python3
better_python3
#!/usr/bin/env perl
# This adds the post-inc, post-dec, pre-inc and pre-dec operators to python!
# Additionally, it supports the -O3 optimization feature.
# Test! :)
my $optimized = 0;
if (@ARGV and $ARGV[0] eq '-O3') {
shift;