Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I like using shebangs to run my Perl scripts directly:

#!/usr/bin/env perl

What's the shebang for Go programs?

share|improve this question
2  
Go is compiled. You shouldn't need a shebang. Right? – Austin Marshall Oct 9 '11 at 23:12

2 Answers

up vote 6 down vote accepted

There isn't one by default. There is a third-party tool called gorun that will allow you to do it, though. https://wiki.ubuntu.com/gorun

Unfortunately the compilers don't like the shebang line. You can't compile the same code you run with gorun.

share|improve this answer
Argh. 6g and friends bork when they see a shebang. – mcandre Oct 10 '11 at 22:04
Sorry, I should've mentioned that. Edited. – Evan Shaw Oct 12 '11 at 3:16

Go programs are compiled to binaries; I don't think there is an option to run them directly from source.

This is similar to other compiled languages such as C++ or Java. Some languages (such as Haskell) offer both a fully compiled mode and a "script" mode which you can run directly from source with a shebang line.

share|improve this answer
+1 wheras Perl is an interpreted scripting language.... – James Khoury Oct 9 '11 at 23:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.