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; | |
using System.Collections.Generic; | |
using System.Dynamic; | |
namespace Demo | |
{ | |
class Program | |
{ | |
static void Main() |
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 NUnit.Framework; | |
namespace REGEX.TESTS | |
{ | |
[TestFixture] | |
public class RegexTests | |
{ | |
[Test] | |
public void Regex() |
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
class TodosController extends Batman.Controller | |
index: () -> | |
@set('todo', new Todo()) | |
@render(false) | |
create: () => | |
@todo.save(() => @set('todo', new Todo)) | |
# clean checked todo items. | |
clean: () -> | |
todos = TodoApp.get('Todo.all') |
NewerOlder