mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
14 lines
202 B
Go
14 lines
202 B
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
package main
|
|
|
|
import (
|
|
"baliance.com/gooxml/presentation"
|
|
)
|
|
|
|
func main() {
|
|
ppt := presentation.New()
|
|
ppt.AddSlide()
|
|
|
|
ppt.SaveToFile("simple.pptx")
|
|
}
|