They Asked About You

"They Asked About You" is a song written by Freddy Weller, Bill Nash and Kim Nash, and recorded by American country music artist Reba McEntire. It was released in December 1993 as the second and final single from her compilation album Greatest Hits Volume Two. The song reached #7 on the Billboard Hot Country Singles & Tracks chart in March 1994.[1]

"They Asked About You"
Single by Reba McEntire
from the album Greatest Hits Volume Two
B-side"For Herself"
ReleasedDecember 25, 1993
GenreCountry
Length3:12
LabelMCA 54769
Songwriter(s)Kim Nash
Bill Nash
Freddy Weller
Producer(s)Tony Brown
Reba McEntire
Reba McEntire singles chronology
"Does He Love You"
(1993)
"They Asked About You"
(1993)
"Why Haven't I Heard from You"
(1994)

It debuted at #48 on the Hot Country Singles & Tracks for the week of December 25, 1993.

Chart performance

Chart (1993–1994) Peak
position
Canada Country Tracks (RPM)[2] 15
US Hot Country Songs (Billboard)[3] 7
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.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?

References

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