mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-16 21:03:14 +01:00
13 lines
86 B
D
13 lines
86 B
D
module app;
|
|
import lib;
|
|
|
|
void func()
|
|
{
|
|
lib_func();
|
|
}
|
|
|
|
void main()
|
|
{
|
|
func();
|
|
}
|