Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
Update hello.js arithmetic operator code style
Browse files Browse the repository at this point in the history
Signed-off-by: Rodrigo <rodrigo@rxdx.com.br>
  • Loading branch information
RxDx committed Oct 29, 2020
1 parent 5291456 commit a086bfe
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
function Run(input1, input2, input3) {
console.log("Hello World!");
console.log("You receive "+ input1 +" in text.");
console.log("You receive "+ input2 +" in list.");
console.log("You receive "+ input3 +" in boolean.");
console.log("You receive " + input1 + " in text.");
console.log("You receive " + input2 + " in list.");
console.log("You receive " + input3 + " in boolean.");
}

const hello = Run
Expand Down

0 comments on commit a086bfe

Please sign in to comment.