This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
..... | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals> | |
<goal>jar</goal> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
....... | |
<dependency> | |
<groupId>com.vinimo</groupId> | |
<artifactId>utility-service</artifactId> | |
<version>0.0.1</version> | |
</dependency> | |
...... | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-install-plugin</artifactId> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(base) Viniciuss-MacBook-Pro:main-service viniciusmonteiro$ python | |
Python 3.8.3 (default, Jul 2 2020, 11:26:31) | |
[Clang 10.0.0 ] :: Anaconda, Inc. on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> print("Hello World") | |
Hello World | |
>>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(base) Viniciuss-MacBook-Pro:main-service viniciusmonteiro$ irb | |
irb(main):001:0> puts "Hello World" | |
Hello World | |
=> nil | |
irb(main):002:0> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(base) Viniciuss-MacBook-Pro:main-service viniciusmonteiro$ python | |
Python 3.8.3 (default, Jul 2 2020, 11:26:31) | |
[Clang 10.0.0 ] :: Anaconda, Inc. on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> b = 1 | |
>>> print(b) | |
1 | |
>>> b = "test" | |
>>> print(b) | |
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void main(String[] args) { | |
String b = "test"; | |
System.out.println(b); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> squares = [] | |
>>> for i in range(6): | |
... squares.append(i*i) | |
... | |
>>> squares | |
[0, 1, 4, 9, 16, 25] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> squares = [i*i for i in range(6)] | |
>>> squares | |
[0, 1, 4, 9, 16, 25] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> squares = {i*i for i in range(6)} | |
>>> squares | |
{0, 1, 4, 9, 16, 25} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> squares = {i:i*i for i in range(6)} | |
>>> squares | |
{0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25} |