Tabby Programming Language

Tabby Programming Language

  • Docs
  • API
  • Help
  • Blog
  • Github

›Docusaurus

Docusaurus

  • Example Page

First Category

  • document number 2

Second Category

  • This is document number 3

Latin-ish

Check the documentation for how to use Docusaurus.

Tabby
Go
C++
/* Unlike Go, no need to declare package main/func main().
main/main() is inferred in files that have neither
a package declaration, nor a function declaration.
*/

println("Hello, World!")
package main

import "fmt"

func main() {
fmt.Println("Hello, World!")
}
#include <iostream>
using namespace std;

int main()
{
cout << "Hello, World!";
return 0;
}
document number 2 →
Tabby Programming Language
Docs
Getting Started (or other categories)Guides (or other categories)API Reference (or other categories)
Community
User ShowcaseStack OverflowProject Chat
Social
tabby-lang.github.io
Follow @happyferrete
Copyright © 2019 Mark "Happy-Ferret" Bauermeister