Skip to content

Instantly share code, notes, and snippets.

@GlenDC
Created December 6, 2015 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GlenDC/22b0886f9b19e5f529ad to your computer and use it in GitHub Desktop.
Save GlenDC/22b0886f9b19e5f529ad to your computer and use it in GitHub Desktop.
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