Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
Imports System.IO
|
||||
|
||||
Module Notes
|
||||
Function Main(ByVal cmdArgs() As String) As Integer
|
||||
Try
|
||||
If cmdArgs.Length = 0 Then
|
||||
Using sr As New StreamReader("NOTES.TXT")
|
||||
Console.WriteLine(sr.ReadToEnd)
|
||||
End Using
|
||||
Else
|
||||
Using sw As New StreamWriter("NOTES.TXT", True)
|
||||
sw.WriteLine(Date.Now.ToString())
|
||||
sw.WriteLine("{0}{1}", ControlChars.Tab, String.Join(" ", cmdArgs))
|
||||
End Using
|
||||
End If
|
||||
Catch
|
||||
End Try
|
||||
End Function
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue