September Morn Update

This commit is contained in:
Ingy döt Net 2019-09-12 10:33:56 -07:00
parent 4e2d22a71d
commit aac6731f2c
6856 changed files with 141342 additions and 21127 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