Created
December 6, 2015 20:37
-
-
Save GlenDC/22b0886f9b19e5f529ad to your computer and use it in GitHub Desktop.
This file contains 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
curl -o quine.f90 https://gist.githubusercontent.com/GlenDC/11dadd47137b2c1a5587/raw/ && \ | |
alias _fortran='(gfortran -o quine quine.f90 && ./quine)' && \ | |
alias _fotopy='(_fortran > quine.py && rm -f quine)' && \ | |
alias _pytofo='(python quine.py > quine.f90)' && \ | |
_fotopy && _pytofo && _fotopy && _pytofo && _fortran |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment