nim-basic/scrap.nim

18 lines
346 B
Nim
Raw Normal View History

2024-06-27 10:02:25 +00:00
type
Entry* = object
name*, tag*, description*, link*, category* : string
proc getEntryFromHtml(entry : Entry) =
echo(entry.description)
proc test() =
var entry: Entry
entry = Entry(name : "testname",description : "testdescription",link : "testlink",category : "testcategory")
entry.getEntryFromHtml()
#echo "run test"
test()