mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
12 lines
191 B
D
12 lines
191 B
D
module tangotests.ina1;
|
|
|
|
import tango.stdc.stdio;
|
|
|
|
void main()
|
|
{
|
|
int alder;
|
|
printf("Hvor gammel er du?\n");
|
|
scanf("%d", &alder);
|
|
printf("om 10 år er du %d\n", alder + 10);
|
|
}
|