Skip to content

Instantly share code, notes, and snippets.

View HIMISOCOOL's full-sized avatar

Matthew HIMISOCOOL

  • New Zealand
View GitHub Profile
@HIMISOCOOL
HIMISOCOOL / HelloOO.cs
Created July 1, 2017 22:40
Rust doesnt have inheritance but that doesnt mean you cant do the same things
using System;
namespace HelloWorld
{
abstract class Waterway
{
internal string name;
}
class Sea : Waterway