Printing Hello World from Scratch in Wave
· 4 মিনিট পড়া
Wave fundamentally provides no standard functions out of the box. While println()
and print()
do currently exist, they are temporary functions intended for testing during development and are not official. The only officially supported built-in function in Wave is import()
.
But let’s be honest—if you had to build everything from scratch with no foundation, you probably wouldn't want to use the language. Fortunately, Wave supports a standard library, which allows you to use pre-written library functions. However, in bare-metal environments where standard libraries can't be used, you must implement everything yourself, step by step.