in

CodePrairie .NET

South Dakota .NET User Group

chrisortman

Mars Edit Test

This is a test post from MarsEdit Line break. Here's some code so I can test my syntax highlight.

Chris

    1 using System;
    2 
    3 public class Customer {
    4   private string _name;
    5 
    6   public String Name {
    7     get { return _name; }
    8     set { _name = value; }
    9   }
   10 
   11   public String SayHello() {
   12     return "Hi";
   13   }
   14 
   15 }
   16 
    1 class Customer
    2   attr_accessor :name
    3   
    4   def say_hello
    5     "Hi"
    6   end
    7 end

Comments

No Comments

Leave a Comment

(required)
(optional)
(required)
Add
Powered by Community Server (Commercial Edition), by Telligent Systems