- Published on
New Year
- Authors
- Name
- DP Piggy
- @xiaozhudxiaozhu
Hello, 2023
A New Year and A New Beginning!
go
package main
import "fmt"
func main() {
fmt.Println("Hello, 2023!")
}
java
public class App {
public static void main(String[] args) throws Exception {
System.out.println("Hello, 2023!");
}
}
c++
#include <iostream>
using namespace std;
int main() {
cout << "Hello, 2023" << endl;
}
python3
print("hello, 2023")