Skip to content

Instantly share code, notes, and snippets.

View cmanus's full-sized avatar

Dead Developer cmanus

View GitHub Profile
print 'Running data script for table: dbo.AssetPartType'
-- declare table variable to hold desired data
declare @Data table
(
ID int not null,
Name varchar(50) not null,
DisplayName nvarchar(50) not null,
IsValidLeakLocation bit not null,
IsValidServiceLocation bit not null,
package goreverse
import (
"ObjC/Foundation/NSDate"
"fmt"
)
func GetDate() string {
return fmt.Sprint(NSDate.Date())
}