This commit is contained in:
Shunsuke Shibayama 2022-12-14 11:28:31 +09:00
parent 420c7b5ebf
commit 4ad8b343bb
3 changed files with 5 additions and 5 deletions

6
Cargo.lock generated
View File

@ -227,7 +227,7 @@ dependencies = [
[[package]]
name = "erg_common"
version = "0.6.0-beta.2"
source = "git+https://github.com/erg-lang/erg?branch=pylyzer-mode#3d69353bf6a369070834247e46c85835223827e6"
source = "git+https://github.com/erg-lang/erg?branch=pylyzer-mode#481761e50b875729639acc79ae82cfc1576aa22c"
dependencies = [
"hermit-abi",
"libc",
@ -237,7 +237,7 @@ dependencies = [
[[package]]
name = "erg_compiler"
version = "0.6.0-beta.2"
source = "git+https://github.com/erg-lang/erg?branch=pylyzer-mode#3d69353bf6a369070834247e46c85835223827e6"
source = "git+https://github.com/erg-lang/erg?branch=pylyzer-mode#481761e50b875729639acc79ae82cfc1576aa22c"
dependencies = [
"erg_common",
"erg_parser",
@ -246,7 +246,7 @@ dependencies = [
[[package]]
name = "erg_parser"
version = "0.6.0-beta.2"
source = "git+https://github.com/erg-lang/erg?branch=pylyzer-mode#3d69353bf6a369070834247e46c85835223827e6"
source = "git+https://github.com/erg-lang/erg?branch=pylyzer-mode#481761e50b875729639acc79ae82cfc1576aa22c"
dependencies = [
"erg_common",
"unicode-xid 0.2.4",

View File

@ -1,4 +1,4 @@
x = 1
test = 1
def add(a, b):
return a + b

View File

@ -4,5 +4,5 @@ import random
i = random.randint(0, 1)
print(i + 1)
print(export.x)
print(export.test)
print(export.add(1, 2))