//-------------------------------------------------------
// Example of how to use choices in PbO
// 
// Written by: Quinn Hsu
// Simply prints out 'Hello World' in various languages
//-------------------------------------------------------

#include <iostream>
using namespace std;

int main() {

##BEGIN CHOICE language=en
	cout << "Hello World!" << endl;
##CHOICE language=ch
	cout << "你好世界!" << endl;
##CHOICE language=fr
	cout << "Bonjour le monde!" << endl;
##END CHOICE language

return 0;
}
