example 3

This commit is contained in:
Alexander Zhirov 2021-11-08 17:54:39 +03:00
parent 1fccd9bcc0
commit 08bdade449
3 changed files with 40 additions and 0 deletions

15
src/example_3/.gitignore vendored Normal file
View File

@ -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

10
src/example_3/dub.json Normal file
View File

@ -0,0 +1,10 @@
{
"authors": [
"alexander"
],
"copyright": "Copyright © 2021, alexander",
"description": "Основы работы с функциями",
"license": "proprietary",
"name": "example_3",
"targetPath": "bin"
}

View File

@ -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);
}