mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
202 B
Bash
Executable file
10 lines
202 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo 'import std.stdio; void main() { writeln("Success"); }' | \
|
|
$DMD -m${MODEL} -of${OUTPUT_BASE}${EXE} -
|
|
|
|
${OUTPUT_BASE}${EXE}
|
|
|
|
rm_retry -f ${OUTPUT_BASE}{${OBJ},${EXE}}
|