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
// Title: An example of Object Algebras in Felix | |
// Author: Garrett Bluma | |
// Date: June 29, 2015 | |
// Special thanks to Bruno Oliveira and William Cook for explaining object | |
// algebras, and for providing examples. | |
// <http://i.cs.hku.hk/~bruno/oa/> | |
// ----------------------------------------- | |
// Object algebras use extension via type parameters and inheritance. Given a |
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 | |
sudo apt-get install cmake g++ libboost-dev flex bison re2c libmysqlclient-dev \ | |
libxml2-dev libmcrypt-dev libicu-dev openssl binutils-dev libcap-dev \ | |
libgd2-xpm-dev zlib1g-dev libtbb-dev libonig-dev libpcre3-dev git-core \ | |
autoconf libtool libcurl4-openssl-dev libboost-system-dev \ | |
libboost-program-options-dev libboost-filesystem-dev curl | |
# getting hiphop source code | |
mkdir hiphop |