Quite

From Esolang
Jump to navigation Jump to search

A language made by Areallycoolusername. This is an attempt to make a useful language.

Specifics

This language so far, only supports printing and comments. It is implemented in C# as opposed to C++ which I always use. Here's the interpreter.

using System;

namespace Quite {
		
public class Program  {
			
public static void Main(String[] args) {
	
string Qnput;
Qnput = Console.ReadLine();
	     	         
switch(Qnput) {
case "PrintV":
string jnput = Console.ReadLine();
Console.WriteLine(jnput);
break;
default:
Console.WriteLine("Quite the contrary to what we were expecting, my good fellow!");
break;
case "@":
break;
} 
         		
}
			
}
	
}

Hello World Program

              @comments made using AT symbol.
PrintV        @V points to the text below the command

Hello, world! @no quotes need. Entire line except comments read.