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"