Add basic sketch of needed core components for hello world.

This commit is contained in:
Jesse Brault 2024-12-31 17:23:03 -06:00
parent 1a3e48fddf
commit db83cb7403
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,5 @@
ns std::core
pub int Array<T>
impl ConstantByteArray(fld raw_address: USize, fld raw_size: USize) : Array<Byte>

View File

@ -0,0 +1,5 @@
ns std::core
pub int String
impl StringImpl(fld bytes: Array<Byte>) : String

1
sketching/hello_world.dm Normal file
View File

@ -0,0 +1 @@
println "Hello, World!"