Skip to content

Commit 0ec1095

Browse files
committed
ScalaJS 1.18.2
1 parent 09ca813 commit 0ec1095

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ Flowcharts, runnable in your browser!
1717
- `Real` - decimal number
1818
- `String` - text
1919
- `Boolean` - true/false
20-
- `Array[Integer]` - array of `Integer`s
21-
- `Array[Real]` - array of `Real`s
22-
- `Array[String]` - array of `String`s
23-
- `Array[Boolean]` - array of `Boolean`s
20+
- `Integer[]` - array of `Integer`s
21+
- `Real[]` - array of `Real`s
22+
- `String[]` - array of `String`s
23+
- `Boolean[]` - array of `Boolean`s
24+
- `Integer[][]` - matrix of `Integer`s
25+
- `Real[][]` - matrix of `Real`s
26+
- `String[][]` - matrix of `String`s
27+
- `Boolean[][]` - matrix of `Boolean`s
2428

2529
### Operators
2630
- `+`, `-`, `*`, `/`, `%` for arithmetic operations

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
55
// for tests
66
libraryDependencies += ("org.scala-js" %% "scalajs-env-jsdom-nodejs" % "1.1.0")
77

8-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1")
8+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
99

1010
addSbtPlugin("com.github.sbt" % "sbt-web" % "1.5.8")
1111

0 commit comments

Comments
 (0)