This file contains hidden or 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
import readline from 'readline'; | |
async function readStdIn() { | |
return new Promise((resolve, reject) => { | |
const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); | |
let input = ''; | |
rl.on('line', (line) => { | |
input += line; |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>aGroupId</groupId> | |
<artifactId>test-jar-resources</artifactId> | |
<version>1.0-SNAPSHOT</version> |
This file contains hidden or 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
package de.oliver; | |
import javaslang.collection.List; | |
public class SquareOfNumberCalculator { | |
public static void main(String[] args) { | |
final List<Integer> myList = List.range(1, 6); | |
final List<Integer> squaredNumbers = myList.map(i -> i * i); | |
System.out.println("Printing original numbers"); | |
myList.forEach(i -> System.out.println(" i --> " + i)); |
NewerOlder