Getting Started with BigC
1. Installation
BigC is a compiled language built in Rust. You simply need the bigrun binary.
- Download
bigrun. - Place it in your project folder.
- 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
- Learn Syntax
- Explore Control Flow
- Scrape the web with BigNet