forked from JawherKl/devops-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic-concept.groovy
159 lines (122 loc) · 3.12 KB
/
basic-concept.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Function to print log messages in green color
def consoleLog(message) {
println "\u001B[32m[INFO] $message\u001B[0m"
}
// Greetings!
consoleLog("Welcome to Groovy!")
//------------------------
// Working with variables
//------------------------
def myName = "Tung"
def myAge = 28
println "${myName} is ${myAge} years old!"
//-------------------
// Working with if-else
//-------------------
consoleLog("Working with if-else")
def number = 10
if (number > 5) {
println("The number is greater than 5.")
} else {
println("The number is not greater than 5.")
}
//-----------------------
// Working with switch-case
//-----------------------
consoleLog("Working with switch-case")
def myFruit = "Banana"
switch (myFruit) {
case "Apple":
println("It's an apple.")
break
case "Banana":
println("It's a banana.")
break
case "Cherry":
println("It's a cherry.")
break
default:
println("It's something else.")
}
//--------------------
// Working with for loop
//--------------------
consoleLog("Working with for loop")
def fruits = ["Apple", "Banana", "Cherry", "Watermelon", "Elderberry"]
for (fruit in fruits) {
println("I like $fruit")
}
//----------------------
// Working with functions
//----------------------
consoleLog("Working with functions")
def factorial(n) {
if (n == 0) {
return 1
} else {
return n * factorial(n - 1)
}
}
// Call the function and store the result in a variable
def result = factorial(5)
// Print the result
println("Factorial of 5 is: $result")
//-----------------------
// Working with Map in Groovy
//-----------------------
consoleLog("Working with Map in Groovy")
// Create a map with key-value pairs
def person = [
"firstName": "John",
"lastName": "Doe",
"age": 30,
"city": "New York"
]
// Access values in the map
def firstName = person["firstName"]
def age = person["age"]
// Modify values in the map
person["city"] = "Los Angeles"
// Add a new key-value pair to the map
person["email"] = "[email protected]"
// Iterate over the map
person.each { key, value ->
println("$key: $value")
}
//--------------------
// Working with try-catch
//--------------------
consoleLog("Working with try-catch")
def divideNumbers(int dividend, int divisor) {
try {
def result = dividend / divisor
return result
} catch (ArithmeticException e) {
println("An arithmetic exception occurred: ${e.message}")
} finally {
println("Finally block executed.")
}
}
// Example usage:
try {
def divideResult = divideNumbers(10, 2)
println("Result: $divideResult")
} catch (Exception e) {
println("An exception occurred: ${e.message}")
}
//--------------------
// Working with while loop
//--------------------
consoleLog("Working with while loop")
def counter = 0
while (counter < 10) {
println("The counter is $counter")
counter++
}
//--------------------
// Working with sleep
//--------------------
consoleLog("Working with sleep")
println("Sleeping for 30 seconds...")
sleep(30000) // Sleep for 30 seconds
println("Woke up after 30 seconds!")