Cor — A minimal OO proposal for the Perl core
This is version 0.10 of this document.
module.exports = { | |
entry: "./public/javascripts/src/App.jsx", //entry point of your app | |
output: { | |
filename: "./public/javascripts/build/bundle.js" //output transpiled and compiled code | |
}, | |
module: { | |
loaders:[ | |
{ | |
test: /\.js[x]?$/, //list of extensions | |
exclude: /node_modules/, |
#include <stdio.h> | |
#include <magic.h> | |
int main(void) | |
{ | |
char *actual_file = "/file/you/want.yay"; | |
const char *magic_full; | |
magic_t magic_cookie; | |
/* MAGIC_MIME tells magic to return a mime of the file, |
/* Copyright (C) 2011 rocenting#gmail.com */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <unistd.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <sys/resource.h> |
#!/usr/bin/env perl | |
use warnings; | |
use strict; | |
use XML::Compile::WSDL11; | |
use XML::Compile::SOAP11; | |
use XML::Compile::Transport::SOAPHTTP; | |
use HTTP::Tiny; |