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

go: preliminary support for builtin functions, various fixes, various tweaks #14908

Closed
wants to merge 2 commits into from

Conversation

Hunam6
Copy link
Member

@Hunam6 Hunam6 commented Jul 1, 2022

Remaining issues:

  • package declaration not at the start
module main

fn main() {
	a := 123
	println('hey')
}

generates

func println(s string) {
		fmt.Println(s.str)
	}
package main

func main() {
	  a := 123
	  println("hey")
}

(the package declaration isn't at the top)

  • add real support for builtin functions

@ArtemkaKun ArtemkaKun added the Needs Rebase The code of the PR must be rebased over current master before it can be approved. label Jan 23, 2023
@medvednikov medvednikov closed this Sep 1, 2023
@spytheman spytheman deleted the go-backend branch September 6, 2023 04:48
@spytheman spytheman restored the go-backend branch September 6, 2023 04:49
@spytheman spytheman deleted the go-backend branch September 6, 2023 04:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs Rebase The code of the PR must be rebased over current master before it can be approved.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants