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 <czmq.h> | |
#include <assert.h> | |
int main() { | |
zctx_t* ctx = zctx_new(); | |
void *client = zsocket_new (ctx, ZMQ_PAIR); | |
assert(client); | |
zsocket_destroy(ctx, &client); |
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
From 729edf3cceeb6284e48246aa680faac02f9b7fd3 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Juan=20L=C3=B3pez=20Rubio?= <[email protected]> | |
Date: Fri, 5 Jul 2013 18:40:33 -0400 | |
Subject: [PATCH] Making scala happy | |
--- | |
modules/swagger-play/src/play/modules/swagger/ApiHelpInventory.scala | 3 ++- | |
modules/swagger-play/src/play/modules/swagger/HelpApi.scala | 4 ++-- | |
modules/swagger-play/src/play/modules/swagger/PlayApiReader.scala | 1 + | |
3 files changed, 5 insertions(+), 3 deletions(-) |
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
var mongoose = require('mongoose'), | |
Types = mongoose.Schema.Types; | |
var Level2 = { | |
name : { type: String } | |
}; | |
var Level1 = { | |
name : { type: String }, | |
items : [ Level2 ] |
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
const message: string = 'hello world'; | |
console.log(message); | |
class Person { | |
public name!: string; | |
public surname!: string; | |
public say() { console.log("person");} | |
} | |
class Car { |