feat: Makefile for local development

would be even more useful when i'll get tailwind and stuff
This commit is contained in:
efim
2024-03-11 07:32:28 +00:00
parent 81235e3ce6
commit de2fd2bdc0
2 changed files with 27 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
package main
var myVar string = "some string, changed. and more"
var anotherVar string = "hoho, cool"
templ hello(name string) {
<div>Hello, {name}</div>
}
<div>Hello, {name}. referencing var: {myVar}</div>
}