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 QueryDsl { | |
Map data = [:] | |
def methodMissing(String name, agrs) { | |
if (agrs.length == 1) | |
data[name] = agrs[0] | |
else | |
data[name] = agrs | |
} | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <pthread.h> | |
/** | |
* stdatomic.h | |
* | |
* Agregado en C11 standard (ISO/IEC 9899:2011) | |
* Implemendo en GCC 4.9 |
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
import groovy.transform.AutoClone | |
/* Traits */ | |
trait Vencible { | |
Date vencimiento | |
} | |
trait Antelable implements Vencible { |
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
#include <iostream> | |
#include <algorithm> | |
#include <set> | |
#include <vector> | |
#include <string> | |
#include <sstream> | |