This file contains 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
-module(json). | |
-export([decode/1, encode/1]). | |
% JSON_CODEC can be defined during compilation | |
-ifndef(JSON_CODEC). | |
% Default to jsx | |
-define(JSON_CODEC, jsx). | |
-endif | |
decode(Json) -> |
This file contains 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
make tests | |
GEN virgin-test-tmpdir | |
ant -Dmake.bin=/Library/Developer/CommandLineTools/usr/bin/make -DUMBRELLA_AVAILABLE=true -Drabbitmqctl.bin=/Users/daniilfedotov/dev/rabbitmq-public-umbrella/deps/rabbit/scripts/rabbitmqctl -Dsibling.codegen.dir=/Users/daniilfedotov/dev/rabbitmq-public-umbrella/deps/rabbitmq_codegen -Dsibling.rabbitmq_test.dir=/Users/daniilfedotov/dev/rabbitmq-public-umbrella/deps/rabbitmq_test -Dmake.bin=/Library/Developer/CommandLineTools/usr/bin/make -DUMBRELLA_AVAILABLE=true -Drabbitmqctl.bin=/Users/daniilfedotov/dev/rabbitmq-public-umbrella/deps/rabbit/scripts/rabbitmqctl -Dsibling.codegen.dir=/Users/daniilfedotov/dev/rabbitmq-public-umbrella/deps/rabbitmq_codegen -Dsibling.rabbitmq_test.dir=/Users/daniilfedotov/dev/rabbitmq-public-umbrella/deps/rabbitmq_test build | |
make[2]: ant: No such file or directory | |
make[2]: *** [all] Error 1 | |
make[1]: *** [deps] Error 2 | |
DEPEND rabbitmq_stomp.d | |
ERLC rabbit_stomp_client_sup.erl | |
APP rabbitmq_stomp.app.src | |
GEN test-dir |
This file contains 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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: skeleton | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Example initscript | |
# Description: This file should be used to construct scripts to be | |
# placed in /etc/init.d. |
This file contains 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
module Jack where | |
data Tell = Lie | CanLie | Truth | |
data State = Insane | Sane | |
data Card = Ace | Two | Three | Four | Five | Six | Seven | Jack | |
data About = About | |
data As = As | |
data Not = Not | |
data Both = Both |
NewerOlder