mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
10 lines
132 B
D
10 lines
132 B
D
template toInt(char[4] arg)
|
|
{
|
|
const uint toInt = (cast(uint[]) arg)[0];
|
|
}
|
|
|
|
void main()
|
|
{
|
|
auto i = toInt!("abcd");
|
|
}
|