17 lines
163 B
C#
17 lines
163 B
C#
|
// Compiler options: -main:C
|
||
|
|
||
|
using System;
|
||
|
|
||
|
public class C
|
||
|
{
|
||
|
static void Test (decimal amt = 1)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static int Main ()
|
||
|
{
|
||
|
Test ();
|
||
|
return 0;
|
||
|
}
|
||
|
}
|