MY SYSTEM
==MY SYSTEM==
macOS Catalina 10.15.5
vim 8.1.2292
ranger 1.9.3
== MY ECS ==
ubuntu 18.04.4 LTS (GNU/Linux 4.15.0-91-generic)
neovim 0.2.2
zsh with oh-my-zsh
HELLO
C
1 2 3 4 5 6 7 8
| #include <stdio.h>
int main() { printf("hello\n");
return 0; }
|
C++
1 2 3 4 5 6 7 8 9
| #include <iostream> using namespace std;
int main() { cout << "hello" << endl;
return 0; }
|
PYTHON
JAVA
1 2 3 4 5
| public class hello { public static void main(String[] args) { System.out.println("hello"); } }
|
GOLANG
1 2 3 4 5 6 7 8 9
| package main
import ( "fmt" )
func main() { fmt.Println("hello") }
|
HTML
1 2 3 4 5 6 7 8 9
| <html> <head> <meta charset="UTF-8"> <title>hello</title> </head> <body> Hello! </body> </html>
|