aboutsummaryrefslogtreecommitdiff
path: root/vb/step0_repl.vb
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-11-15 23:51:59 -0600
committerJoel Martin <github@martintribe.org>2015-01-09 16:16:47 -0600
commitaaba249304b184e12e2445ab22d66df1f39a51a5 (patch)
treea3c7b1a0d683ef73ec030a390eca2922bfc9bc54 /vb/step0_repl.vb
parentee7cd5859e56423983f025088c8cef36b7ed09dd (diff)
downloadmal-aaba249304b184e12e2445ab22d66df1f39a51a5.tar.gz
mal-aaba249304b184e12e2445ab22d66df1f39a51a5.zip
VB.Net, C#: fix cmd line arg handling with --raw
Diffstat (limited to 'vb/step0_repl.vb')
-rw-r--r--vb/step0_repl.vb4
1 files changed, 2 insertions, 2 deletions
diff --git a/vb/step0_repl.vb b/vb/step0_repl.vb
index ab8fe5e..f53f378 100644
--- a/vb/step0_repl.vb
+++ b/vb/step0_repl.vb
@@ -2,7 +2,7 @@ Imports System
Imports Mal
Namespace Mal
- class step0_repl
+ Class step0_repl
' read
Shared Function READ(str As String) As String
Return str
@@ -39,5 +39,5 @@ Namespace Mal
Loop While True
Return 0
End function
- end class
+ End Class
End Namespace