Skip to content

Commit 4886ef7

Browse files
BrewTestBotchenrui333
authored andcommitted
inko 0.17.0
inko: update test Signed-off-by: Rui Chen <[email protected]>
1 parent c76a73e commit 4886ef7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Formula/i/inko.rb

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
class Inko < Formula
22
desc "Safe and concurrent object-oriented programming language"
33
homepage "https://inko-lang.org/"
4-
url "https://releases.inko-lang.org/0.16.0.tar.gz"
5-
sha256 "7850dc9b0f6e544977a6eb3854022131f30e49e43b99f47cc5aefb77e0b97c32"
4+
url "https://releases.inko-lang.org/0.17.0.tar.gz"
5+
sha256 "d97e1b898fd3de946dab5559c587cab0bcf7f3df40a43266d5b9e0a14f03202a"
66
license "MPL-2.0"
7-
revision 1
87
head "https://github.com/inko-lang/inko.git", branch: "main"
98

109
bottle do
@@ -38,11 +37,11 @@ def install
3837

3938
test do
4039
(testpath/"hello.inko").write <<~EOS
41-
import std.stdio (STDOUT)
40+
import std.stdio (Stdout)
4241
4342
class async Main {
4443
fn async main {
45-
STDOUT.new.print('Hello, world!')
44+
Stdout.new.print('Hello, world!')
4645
}
4746
}
4847
EOS

0 commit comments

Comments
 (0)