Measures Concepts
GitHub icon

Handel-C

Handel-C - Programming language

< >

Handel-C is a programming language created in 1996.

#1036on PLDB 28Years Old

Handel-C is a high-level programming language which targets low-level hardware, most commonly used in the programming of FPGAs. It is a rich subset of C, with non-standard extensions to control hardware instantiation with an emphasis on parallelism. Handel-C is to hardware design what the first high-level programming languages were to programming CPUs. Read more on Wikipedia...


Example from Wikipedia:
int a; void main(void) { int b; /* "a" and "b" are within scope */ { int c; /* "a", "b" and "c" are within scope */ } { int d; /* "a", "b" and "d" are within scope */ } }

Language features

Feature Supported Token Example
Comments ✓
/* A comment
*/
MultiLine Comments ✓ /* */
/* A comment
*/
Semantic Indentation X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout