Blog/content/posts/2023/basic/timestamp-gambas.md
2023-03-21 01:20:26 +03:00

12 lines
227 B
Markdown

---
title: "🕘 Получение timestamp в Gambas"
date: 2023-03-21T01:20:00+03:00
draft: false
tags: [tips, basic, development]
---
```basic
' return unix timestamp
Print DateDiff(CDate("1/1/1970"), Now, gb.Second)
```