Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

closures and global variables #15004

Closed
russo-2025 opened this issue Jul 9, 2022 · 0 comments · Fixed by #15008 or #15010
Closed

closures and global variables #15004

russo-2025 opened this issue Jul 9, 2022 · 0 comments · Fixed by #15008 or #15010
Labels
Bug This tag is applied to issues which reports bugs.

Comments

@russo-2025
Copy link

russo-2025 commented Jul 9, 2022

**V version: ** V 0.3.0 ec75860
OS: windows, Microsoft Windows 10 Pro v19042 64-bit

What did you do?

module main 

__global (
	number	int
)

fn init() {
	number = 123
}

fn main() {
	// #1 - error
	f1 := fn() {
		println(number)
	}
	f1()

	// #2 - error
	f2 := fn[number] () {
		println(number)
	}
	f2()

	// #3 - ok
	number2 := number
	f3 := fn[number2] () {
		println(number2)
	}
	f3()
}

What did you expect to see?
1 or 2 - ok

What did you see instead?
1 and 2 - error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This tag is applied to issues which reports bugs.
Projects
None yet
1 participant