Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
Imports System.Console
|
||||
Module Program
|
||||
Sub Main()
|
||||
For i = 2 To 8 Step 2
|
||||
Write($"{i}, ")
|
||||
Next
|
||||
WriteLine("who do we appreciate?")
|
||||
End Sub
|
||||
End Module
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
Public Class FormPG
|
||||
Private Sub FormPG_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
Dim i As Integer, buffer As String
|
||||
buffer = ""
|
||||
For i = 2 To 8 Step 2
|
||||
buffer = buffer & i & " "
|
||||
Next i
|
||||
Debug.Print(buffer)
|
||||
End Sub
|
||||
End Class
|
||||
Loading…
Add table
Add a link
Reference in a new issue