nim-basic/scrap.nim
2024-06-27 12:02:25 +02:00

18 lines
346 B
Nim

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()