Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,7 @@
Module Program
Const FACTORIAL_10 = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1
Sub Main()
Console.WriteLine(FACTORIAL_10)
End Sub
End Module

View file

@ -0,0 +1,27 @@
.class private auto ansi sealed Program
extends [System.Runtime]System.Object
{
.custom instance void Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute::.ctor() = (
01 00 00 00
)
// Fields
.field private static literal int32 FACTORIAL_10 = int32(3628800)
// Methods
.method public static
void Main () cil managed
{
.custom instance void [System.Runtime]System.STAThreadAttribute::.ctor() = (
01 00 00 00
)
// Method begins at RVA 0x2060
// Code size 11 (0xb)
.maxstack 8
.entrypoint
IL_0000: ldc.i4 3628800
IL_0005: call void [System.Console]System.Console::WriteLine(int32)
IL_000a: ret
} // end of method Program::Main
} // end of class Program

View file

@ -0,0 +1,5 @@
Module Program
Sub Main()
Console.WriteLine(10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1)
End Sub
End Module

View file

@ -0,0 +1,7 @@
Module Program
Sub Main()
Dim factorial As Integer
factorial = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1
Console.WriteLine(factorial)
End Sub
End Module

View file

@ -0,0 +1,24 @@
.class private auto ansi sealed Program
extends [System.Runtime]System.Object
{
.custom instance void Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute::.ctor() = (
01 00 00 00
)
// Methods
.method public static
void Main () cil managed
{
.custom instance void [System.Runtime]System.STAThreadAttribute::.ctor() = (
01 00 00 00
)
// Method begins at RVA 0x2060
// Code size 11 (0xb)
.maxstack 8
.entrypoint
IL_0000: ldc.i4 3628800
IL_0005: call void [System.Console]System.Console::WriteLine(int32)
IL_000a: ret
} // end of method Program::Main
} // end of class Program