#include <stdio.h>
void print_text(char[] text) {
printf("%s\n", text);
}
int main() {
printf("hoge\n");
print_text("foobar");
return 0;
}
# coding: utf-8
def main():
print('hoge')
if __name__ == '__main__':
main()
$ echo hoge
hoge
#include <iostream>
auto main() -> int {
using namespace std;
cout << "this is too long sentence......" << endl;
return 0;
}