The Political Compass

Economic Left/Right: -4.13

Social Libertarian/Authoritarian: -2.87

C 編輯

#include <stdio.h>

int main(void) {
   puts("hello, world");
   return 0;
}

Python2 編輯

print "hello, world"

Python3 編輯

print("hello, world")

Bash 編輯

echo "hello, world"