example 3
This commit is contained in:
parent
1fccd9bcc0
commit
08bdade449
|
@ -0,0 +1,15 @@
|
|||
.dub
|
||||
docs.json
|
||||
__dummy.html
|
||||
docs/
|
||||
/example_3
|
||||
example_3.so
|
||||
example_3.dylib
|
||||
example_3.dll
|
||||
example_3.a
|
||||
example_3.lib
|
||||
example_3-test-*
|
||||
*.exe
|
||||
*.o
|
||||
*.obj
|
||||
*.lst
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"authors": [
|
||||
"alexander"
|
||||
],
|
||||
"copyright": "Copyright © 2021, alexander",
|
||||
"description": "Основы работы с функциями",
|
||||
"license": "proprietary",
|
||||
"name": "example_3",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
import std.stdio;
|
||||
|
||||
void fun(ref uint x, double y)
|
||||
{
|
||||
x = 42;
|
||||
y = 3.14;
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
uint a = 1;
|
||||
double b = 2;
|
||||
fun(a, b);
|
||||
writeln(a, ' ', b);
|
||||
}
|
Reference in New Issue