forked from TrueCloudLab/neoneo-go
9 lines
307 B
Go
9 lines
307 B
Go
|
package util
|
||
|
|
||
|
// Package util provides utility functions that can be used in smart contracts.
|
||
|
// These functions are just signatures and provide not internal logic.
|
||
|
// Only the compiler knows how to convert them to bytecode.
|
||
|
|
||
|
// Print is a VM helper function to print/log data.
|
||
|
func Print(v interface{}) {}
|