add example of langs

This commit is contained in:
Kreyren 2020-02-03 07:02:47 +00:00
parent 1027b9de85
commit cc34fc23b7
6 changed files with 22 additions and 0 deletions

3
src/bin/main.bash Normal file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
printf '%s\n' "ping"

1
src/bin/main.bf Normal file

@ -0,0 +1 @@
+[-[<<[+[--->]-[<<<]]]>>>-]>-.---.>..>.<<<<-.<+.>>>>>.>.<<.<-.

5
src/bin/main.c Normal file

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("%s\n", "ping");
}

9
src/bin/main.cpp Normal file

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "ping";
return 0;
}

1
src/bin/main.py Normal file

@ -0,0 +1 @@
print("ping")

3
src/bin/main.sh Normal file

@ -0,0 +1,3 @@
#!/bin/sh
printf '%s\n' "ping"