Getting Started with BigC

1. Installation

BigC is a compiled language built in Rust. You simply need the bigrun binary.

  1. Download bigrun.
  2. Place it in your project folder.
  3. Make it executable: chmod +x bigrun

2. Your First Program

Create a file named hello.big:

print "Hello, World!"
wait 1 s
print "This is BigC."

3. Running Code

Run the interpreter on your file:

./bigrun hello.big

4. Next Steps