Hope Evans

Francis Hope Evans (13 May 1902 – 2 October 1991) was an Australian rules footballer who played with Carlton in the Victorian Football League (VFL).[1]

Hope Evans
Personal information
Full name Francis Hope Evans
Date of birth (1902-05-13)13 May 1902
Place of birth Carlton, Victoria
Date of death 2 October 1991(1991-10-02) (aged 89)
Original team(s) Albury
Playing career1
Years Club Games (Goals)
1925 Carlton 7 (0)
1 Playing statistics correct to the end of 1925.
Sources: AFL Tables, AustralianFootball.com

Notes

  1. Holmesby, Russell; Main, Jim (2009). The Encyclopedia of AFL Footballers: every AFL/VFL player since 1897 (8th ed.). Seaford, Victoria: BAS Publishing. p. 249. ISBN 978-1-921496-00-4.
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.