Skip to content

Instantly share code, notes, and snippets.

View abonander's full-sized avatar

Austin Bonander abonander

View GitHub Profile
@abonander
abonander / Attempt.cpp
Last active October 19, 2016 22:49 — forked from anonymous/Attempt
//calculator by jake molina
//includes iostream
#include <iostream>
//Standard namespace
using namespace std;
void main()
{
@abonander
abonander / Attempt
Created October 19, 2016 22:43 — forked from anonymous/Attempt
//calculator by jake molina
//includes iostream
#include <iostream>
//Standard namespace
using namespace std;
void main()
{
End Sub
Sub FnRev()
System.Console.WriteLine("Type in text and press ENTER to reverse it.")
Dim input1 As String = System.Console.ReadLine()
Dim revstring As String = StrReverse(input1)
System.Console.WriteLine(revstring)
End Sub
Sub FnCharCnt()