Shouyi Road station

Shouyi Road Station (Chinese: 首义路站), is a station of Line 4 of Wuhan Metro. It entered revenue service on December 28, 2014. It is located in Wuchang District.[1]

Shouyi Road

首义路
Cultural Wall of Shouyi Road Station.
LocationWuchang District, Wuhan, Hubei
China
Operated byWuhan Metro Co., Ltd
Line(s)     Line 4
Platforms2 (1 island platform)
Construction
Structure typeUnderground
History
OpenedDecember 28, 2014
Services
Preceding station   Wuhan Metro   Following station
toward Bailin
Line 4

Around the station

gollark: <@!341618941317349376>
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)```

References

  1. "武汉地铁4号线各站简介". Archived from the original on January 11, 2013. Retrieved March 25, 2012.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.