Advertisement
31ph4n70m

reverse_string.vb

Nov 19th, 2019
601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.27 KB | None | 0 0
  1. 'VisualBasic solution to codeabbey challenge 30
  2. public class compiler
  3.   shared function Main as integer
  4. ' Your code here!
  5.     Dim s As String = "on fare supper off shelf jeopardy about cactus"
  6.     Console.WriteLine (StrReverse(s))
  7.     return 0
  8.   End function
  9. end class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement