Skip to content

Instantly share code, notes, and snippets.

@koron
Created May 3, 2014 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koron/da04a5fb302354561885 to your computer and use it in GitHub Desktop.
Save koron/da04a5fb302354561885 to your computer and use it in GitHub Desktop.
{% tabcontrol %}
{% tabpage C言語 %}
{% highlight c %}
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello World\n");
return 0;
}{% endhighlight %}
{% endtabpage %}
{% tabpage Java %}
{% highlight java %}
public static void main(String[] args) {
System.out.println("Hello World");
}{% endhighlight %}
{% endtabpage %}
{% tabpage Go言語 %}
{% highlight go %}
package main
import fmt
func main() {
fmt.Println("Hello World")
}{% endhighlight %}
{% endtabpage %}
{% endtabcontrol %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment