initial commit

This commit is contained in:
Sergey Krylov 2026-01-27 05:16:06 +03:00
commit 3a8c2886a2
2 changed files with 40 additions and 0 deletions

33
.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/
.kotlin
.idea
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store
*.iml

View File

@ -0,0 +1,7 @@
package ru.charm.back;
public class Main {
public static void main(String[] args) {
System.out.println("Hello from charm");
}
}