12 lines
227 B
Markdown
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)
|
||
|
```
|