Sign in
qemu
/
meson
/
7b43a2e19613f3702935872b21b1020f7d8c6a9b
/
.
/
test cases
/
d
/
7 multilib
/
say2.d
blob: 7270ebd22c12cbc2dad4d87d80cc17f499244a6c [
file
] [
log
] [
blame
]
import
std
.
stdio
;
import
std
.
string
:
format
;
export
int
sayHello2
(
string
str
)
{
writeln
(
"Hello %s from library 2."
.
format
(
str
));
return
8
;
}
version
(
Windows
)
{
import
core
.
sys
.
windows
.
dll
;
mixin
SimpleDllMain
;
}