This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Console; | |
using Nemerle.Imperative.GoTo; // It need for 'goto' and 'label' macros. | |
struct S | |
{ | |
public mutable X : int; | |
public mutable Y : int; | |
} | |
module Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Console; | |
struct S | |
{ | |
public mutable X : int; | |
public mutable Y : int; | |
} | |
module Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax Node = Key=Reference sm NodeContent; | |
syntax NodeContent = "{" outline_begin_before inl NodeMembers nl d outline_end "}"; | |
syntax NodeMember | |
{ | |
| Attribute = Key=Reference sm ":" sm Value | |
| Node = Node | |
} | |
syntax Value | |
{ |
NewerOlder