Data update

This commit is contained in:
Ingy dot Net 2024-04-20 12:30:13 -07:00
parent aec8ed51b6
commit 29a5eea0d4
128 changed files with 1298 additions and 0 deletions

View file

@ -0,0 +1 @@
print "Hello world!"!

View file

@ -0,0 +1,5 @@
import gleam/io
pub fn main() {
io.println("Hello world!")
}

View file

@ -0,0 +1,4 @@
use core {printf}
main :: () {
printf("Hello world!");
}