Cosmos/source2/Compiler/Cosmos.Compiler.XSharp/Address.cs
kudzu_cp 6167e246b2
2011-07-20 15:07:02 +00:00

15 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Compiler.Assembler;
namespace Cosmos.Compiler.XSharp {
public class Address {
public static implicit operator Address(string aLabel) {
return new AddressDirect(aLabel);
}
}
}