diff --git a/.gitignore b/.gitignore index f68d1099..8b2dd398 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ ### IntelliJ IDEA ### +.idea/* out/ !**/src/main/**/out/ !**/src/test/**/out/ @@ -24,6 +25,8 @@ bin/ ### VS Code ### .vscode/ +.idea/vcs.xml + ### Mac OS ### .DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore index 26d33521..4486945d 100644 --- a/.idea/.gitignore +++ b/.idea/.gitignore @@ -1,3 +1,4 @@ # Default ignored files /shelf/ /workspace.xml +.idea/vcs.xml diff --git a/.idea/misc.xml b/.idea/misc.xml index 9c8e7400..45b76e11 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 35eb1ddf..83067447 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/src/main/kotlin/Lessson_1/L2.kt b/src/main/kotlin/Lessson_1/L2.kt new file mode 100644 index 00000000..d822ef87 --- /dev/null +++ b/src/main/kotlin/Lessson_1/L2.kt @@ -0,0 +1,16 @@ +package Lessson_1 + + +fun main() { + val ordersOnWeb = 75 + val textAfterPurchase = "Благодарим за заказ, ждем Вас вновь!" + println(ordersOnWeb) + println(textAfterPurchase) + + + var workers = 2000 + //println(workers) + + workers = 1999 + println(workers) +} \ No newline at end of file