using the module file
This commit is contained in:
parent
08bdade449
commit
7ab53bee60
|
@ -1,10 +1,5 @@
|
||||||
import std.stdio;
|
import std.stdio;
|
||||||
|
import fun_;
|
||||||
void fun(ref uint x, double y)
|
|
||||||
{
|
|
||||||
x = 42;
|
|
||||||
y = 3.14;
|
|
||||||
}
|
|
||||||
|
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
module fun_;
|
||||||
|
|
||||||
|
void fun(ref uint x, double y)
|
||||||
|
{
|
||||||
|
x = 42;
|
||||||
|
y = 3.14;
|
||||||
|
}
|
Reference in New Issue